Browse Source

Version 2.0.0-alpha08

Aidan Follestad 6 years ago
parent
commit
b9161a1b2a

+ 1 - 1
README.md

@@ -78,7 +78,7 @@ core and normal-use functionality.
 ```gradle
 dependencies {
 	
-    implementation 'com.afollestad.material-dialogs:core:2.0.0-alpha07'
+    implementation 'com.afollestad.material-dialogs:core:2.0.0-alpha08'
 }
 ```
 

+ 1 - 1
core/src/main/java/com/afollestad/materialdialogs/list/DialogMultiChoiceExt.kt

@@ -131,4 +131,4 @@ fun MaterialDialog.toggleAllItemsChecked() {
   throw UnsupportedOperationException(
       "Can't uncheck all items on adapter: ${adapter?.javaClass?.name ?: "null"}"
   )
-}
+}

+ 1 - 1
core/src/main/java/com/afollestad/materialdialogs/list/DialogSingleChoiceExt.kt

@@ -106,4 +106,4 @@ fun MaterialDialog.isItemChecked(index: Int): Boolean {
   throw UnsupportedOperationException(
       "Can't check if item is checked on adapter: ${adapter?.javaClass?.name ?: "null"}"
   )
-}
+}

+ 6 - 1
core/src/main/java/com/afollestad/materialdialogs/utils/IntArrayExt.kt

@@ -1,3 +1,8 @@
+/*
+ * Licensed under Apache-2.0
+ *
+ * Designed and developed by Aidan Follestad (@afollestad)
+ */
 package com.afollestad.materialdialogs.utils
 
 internal fun IntArray.appendAll(values: Collection<Int>): IntArray {
@@ -10,4 +15,4 @@ internal fun IntArray.removeAll(values: Collection<Int>): IntArray {
   val mutable = this.toMutableList()
   mutable.removeAll { values.contains(it) }
   return mutable.toIntArray()
-}
+}

+ 2 - 2
dependencies.gradle

@@ -2,8 +2,8 @@ ext.versions = [
     minSdk            : 16,
     compileSdk        : 28,
     buildTools        : '28.0.2',
-    publishVersion    : '2.0.0-alpha07',
-    publishVersionCode: 206,
+    publishVersion    : '2.0.0-alpha08',
+    publishVersionCode: 207,
 
     gradlePlugin      : '3.1.4',
     spotlessPlugin    : '3.14.0',