Aidan Follestad 8 年之前
父節點
當前提交
58302c46fb
共有 4 個文件被更改,包括 6 次插入6 次删除
  1. 2 2
      README.md
  2. 1 1
      commons/build.gradle
  3. 1 1
      core/build.gradle
  4. 2 2
      sample/build.gradle

+ 2 - 2
README.md

@@ -101,7 +101,7 @@ You can create basic, list, single/multi choice, progress, input, etc. dialogs w
 ```gradle
 dependencies {
 	// ... other dependencies here
-    compile 'com.afollestad.material-dialogs:core:0.9.2.1'
+    compile 'com.afollestad.material-dialogs:core:0.9.2.2'
 }
 ```
 
@@ -113,7 +113,7 @@ The *commons* module contains extensions to the library that not everyone may ne
 ```gradle
 dependencies {
     // ... other dependencies here
-    compile 'com.afollestad.material-dialogs:commons:0.9.2.1'
+    compile 'com.afollestad.material-dialogs:commons:0.9.2.2'
 }
 ```
 

+ 1 - 1
commons/build.gradle

@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
 ext {
     PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
     PUBLISH_ARTIFACT_ID = 'commons'
-    PUBLISH_VERSION = '0.9.2.1'
+    PUBLISH_VERSION = '0.9.2.2'
     SUPPORT_LIBRARY_VERSION = '25.1.0'
     BUILD_TOOLS = "25.0.1"
     TARGET_SDK = 25

+ 1 - 1
core/build.gradle

@@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
 ext {
     PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
     PUBLISH_ARTIFACT_ID = 'core'
-    PUBLISH_VERSION = '0.9.2.1'
+    PUBLISH_VERSION = '0.9.2.2'
     SUPPORT_LIBRARY_VERSION = '25.1.0'
     BUILD_TOOLS = "25.0.1"
     TARGET_SDK = 25

+ 2 - 2
sample/build.gradle

@@ -7,7 +7,7 @@ buildscript {
 apply plugin: 'com.android.application'
 
 ext {
-    PUBLISH_VERSION = '0.9.2.1'
+    PUBLISH_VERSION = '0.9.2.2'
     SUPPORT_LIBRARY_VERSION = '25.1.0'
     BUILD_TOOLS = "25.0.1"
     TARGET_SDK = 25
@@ -21,7 +21,7 @@ android {
         applicationId "com.afollestad.materialdialogssample"
         minSdkVersion 13
         targetSdkVersion TARGET_SDK
-        versionCode 169
+        versionCode 170
         versionName PUBLISH_VERSION
 
         jackOptions {