Aidan Follestad 10 years ago
parent
commit
ceb9e8ece9
2 changed files with 8 additions and 8 deletions
  1. 4 4
      library/build.gradle
  2. 4 4
      sample/build.gradle

+ 4 - 4
library/build.gradle

@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
 apply plugin: 'bintray-release'
 
 android {
-    compileSdkVersion 21
-    buildToolsVersion "21.1.2"
+    compileSdkVersion 22
+    buildToolsVersion "22.0.0"
 
     defaultConfig {
         minSdkVersion 8
-        targetSdkVersion 21
+        targetSdkVersion 22
         versionCode 1
         versionName "0.6.3.5"
     }
@@ -32,4 +32,4 @@ publish {
     website = 'https://github.com/afollestad/material-dialogs'
     issueTracker = "${website}/issues"
     repository = "${website}.git"
-}
+}

+ 4 - 4
sample/build.gradle

@@ -1,13 +1,13 @@
 apply plugin: 'com.android.application'
 
 android {
-    compileSdkVersion 21
-    buildToolsVersion "21.1.2"
+    compileSdkVersion 22
+    buildToolsVersion "22.0.0"
 
     defaultConfig {
         applicationId "com.afollestad.materialdialogssample"
         minSdkVersion 14
-        targetSdkVersion 21
+        targetSdkVersion 22
         versionCode 82
         versionName "0.6.3.5"
     }
@@ -19,4 +19,4 @@ android {
 dependencies {
     compile fileTree(dir: 'libs', include: ['*.jar'])
     compile project(':library')
-}
+}