Aidan Follestad пре 6 година
родитељ
комит
b057305387
7 измењених фајлова са 6 додато и 26 уклоњено
  1. 4 4
      README.md
  2. 0 4
      color/build.gradle
  3. 0 4
      core/build.gradle
  4. 2 2
      dependencies.gradle
  5. 0 4
      files/build.gradle
  6. 0 4
      input/build.gradle
  7. 0 4
      sample/build.gradle

+ 4 - 4
README.md

@@ -83,7 +83,7 @@ core and normal-use functionality.
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:core:2.0.0-rc4'
+  implementation 'com.afollestad.material-dialogs:core:2.0.0-rc5'
 }
 ```
 
@@ -703,7 +703,7 @@ The `input` module contains extensions to the core module, such as a text input
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:input:2.0.0-rc4'
+  implementation 'com.afollestad.material-dialogs:input:2.0.0-rc5'
 }
 ```
 
@@ -861,7 +861,7 @@ The `files` module contains extensions to the core module, such as a file and fo
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:files:2.0.0-rc4'
+  implementation 'com.afollestad.material-dialogs:files:2.0.0-rc5'
 }
 ```
 
@@ -1040,7 +1040,7 @@ The `color` module contains extensions to the core module, such as a color choos
 ```gradle
 dependencies {
   ...
-  implementation 'com.afollestad.material-dialogs:color:2.0.0-rc4'
+  implementation 'com.afollestad.material-dialogs:color:2.0.0-rc5'
 }
 ```
 

+ 0 - 4
color/build.gradle

@@ -22,10 +22,6 @@ android {
         'src/main/res-public'
     ]
   }
-
-  compileOptions {
-    kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs.color"]
-  }
 }
 
 

+ 0 - 4
core/build.gradle

@@ -22,10 +22,6 @@ android {
         'src/main/res-public'
     ]
   }
-
-  compileOptions {
-    kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs.core"]
-  }
 }
 
 dependencies {

+ 2 - 2
dependencies.gradle

@@ -3,8 +3,8 @@ ext.versions = [
     minSdk              : 16,
     compileSdk          : 28,
     buildTools          : '28.0.3',
-    publishVersion      : '2.0.0-rc4',
-    publishVersionCode  : 221,
+    publishVersion      : '2.0.0-rc5',
+    publishVersionCode  : 222,
 
     // Plugins
     gradlePlugin        : '3.2.1',

+ 0 - 4
files/build.gradle

@@ -22,10 +22,6 @@ android {
         'src/main/res-public'
     ]
   }
-
-  compileOptions {
-    kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs.files"]
-  }
 }
 
 dependencies {

+ 0 - 4
input/build.gradle

@@ -22,10 +22,6 @@ android {
         'src/main/res-public'
     ]
   }
-
-  compileOptions {
-    kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs.input"]
-  }
 }
 
 dependencies {

+ 0 - 4
sample/build.gradle

@@ -14,10 +14,6 @@ android {
     versionCode versions.publishVersionCode
     versionName versions.publishVersion
   }
-
-  compileOptions {
-    kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs.sample"]
-  }
 }
 
 dependencies {