Browse Source

Updated support version to 26.1.0

sirekanyan 8 years ago
parent
commit
38f91a8431
2 changed files with 8 additions and 6 deletions
  1. 4 6
      app/build.gradle
  2. 4 0
      build.gradle

+ 4 - 6
app/build.gradle

@@ -16,16 +16,14 @@ android {
 
 dependencies {
     compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
-    compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
-    compile 'com.android.support:design:26.0.0-alpha1'
-    compile 'com.android.support:support-vector-drawable:26.0.0-alpha1'
+    compile "com.android.support:appcompat-v7:$support_version"
+    compile "com.android.support:design:$support_version"
+    compile "com.android.support:support-vector-drawable:$support_version"
     compile "io.reactivex.rxjava2:rxjava:2.1.4"
     compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
     compile "com.squareup.retrofit2:retrofit:$retrofit_version"
     compile "com.squareup.retrofit2:adapter-rxjava2:$retrofit_version"
     compile "com.squareup.retrofit2:converter-gson:$retrofit_version"
-    compile('com.github.bumptech.glide:glide:4.1.1') {
-        exclude group: 'com.android.support' // todo remove
-    }
+    compile 'com.github.bumptech.glide:glide:4.1.1'
     compile(name: 'ulogin-sdk-v1.1', ext: 'aar')
 }

+ 4 - 0
build.gradle

@@ -1,6 +1,7 @@
 buildscript {
     ext {
         kotlin_version = '1.1.50'
+        support_version = '26.1.0'
         retrofit_version = '2.3.0'
     }
     repositories {
@@ -19,6 +20,9 @@ allprojects {
         flatDir {
             dirs 'libs'
         }
+        maven {
+            url 'https://maven.google.com/'
+        }
     }
 }