Browse Source

Library, dependency, plugin, etc. updates

Aidan Follestad 8 years ago
parent
commit
5a841e1fe8
5 changed files with 12 additions and 12 deletions
  1. 1 1
      .travis.yml
  2. 1 1
      build.gradle
  3. 3 3
      commons/build.gradle
  4. 3 3
      core/build.gradle
  5. 4 4
      sample/build.gradle

+ 1 - 1
.travis.yml

@@ -5,7 +5,7 @@ android:
     - tools
     - platform-tools
     - build-tools-24.0.3
-    - android-24
+    - android-25
     - extra-android-support
     - extra-android-m2repository
     - extra-google-m2repository

+ 1 - 1
build.gradle

@@ -3,7 +3,7 @@ buildscript {
         jcenter()
     }
     dependencies {
-        classpath 'com.android.tools.build:gradle:2.2.1'
+        classpath 'com.android.tools.build:gradle:2.2.2'
     }
 }
 

+ 3 - 3
commons/build.gradle

@@ -3,10 +3,10 @@ apply plugin: 'com.android.library'
 ext {
     PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
     PUBLISH_ARTIFACT_ID = 'commons'
-    PUBLISH_VERSION = '0.9.0.2'
-    SUPPORT_LIBRARY_VERSION = '24.2.1'
+    PUBLISH_VERSION = '0.9.1.0'
+    SUPPORT_LIBRARY_VERSION = '25.0.0'
     BUILD_TOOLS = "24.0.3"
-    TARGET_SDK = 24
+    TARGET_SDK = 25
 }
 
 android {

+ 3 - 3
core/build.gradle

@@ -3,10 +3,10 @@ apply plugin: 'com.android.library'
 ext {
     PUBLISH_GROUP_ID = 'com.afollestad.material-dialogs'
     PUBLISH_ARTIFACT_ID = 'core'
-    PUBLISH_VERSION = '0.9.0.2'
-    SUPPORT_LIBRARY_VERSION = '24.2.1'
+    PUBLISH_VERSION = '0.9.1.0'
+    SUPPORT_LIBRARY_VERSION = '25.0.0'
     BUILD_TOOLS = "24.0.3"
-    TARGET_SDK = 24
+    TARGET_SDK = 25
 }
 
 android {

+ 4 - 4
sample/build.gradle

@@ -11,10 +11,10 @@ apply plugin: 'com.android.application'
 apply plugin: 'com.neenbedankt.android-apt'
 
 ext {
-    PUBLISH_VERSION = '0.9.0.2'
-    SUPPORT_LIBRARY_VERSION = '24.2.1'
+    PUBLISH_VERSION = '0.9.1.0'
+    SUPPORT_LIBRARY_VERSION = '25.0.0'
     BUILD_TOOLS = "24.0.3"
-    TARGET_SDK = 24
+    TARGET_SDK = 25
 }
 
 android {
@@ -25,7 +25,7 @@ android {
         applicationId "com.afollestad.materialdialogssample"
         minSdkVersion 9
         targetSdkVersion TARGET_SDK
-        versionCode 167
+        versionCode 168
         versionName PUBLISH_VERSION
     }
     lintOptions {