File tree 3 files changed +22
-9
lines changed
3 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
2
2
apply plugin : ' io.fabric'
3
3
4
4
android {
5
- compileSdkVersion 25
6
- buildToolsVersion " 25.0.2 "
5
+ compileSdkVersion rootProject . compileSdkVersion
6
+ buildToolsVersion rootProject . buildToolsVersion
7
7
8
8
defaultConfig {
9
9
applicationId " com.naman14.algovisualizer"
10
- minSdkVersion 16
11
- targetSdkVersion 25
10
+ minSdkVersion rootProject . minSdkVersion
11
+ targetSdkVersion rootProject . targetSdkVersion
12
12
versionCode 3
13
13
versionName " 1.0"
14
14
}
@@ -33,13 +33,13 @@ repositories {
33
33
34
34
dependencies {
35
35
compile fileTree(dir : ' libs' , include : [' *.jar' ])
36
- compile ' com.android.support:appcompat-v7:25.4.0 '
37
- compile ' com.android.support:design:25.4.0 '
36
+ compile " com.android.support:appcompat-v7:$r ootProject . supportLibraryVersion "
37
+ compile " com.android.support:design:$r ootProject . supportLibraryVersion "
38
38
compile ' com.roughike:bottom-bar:1.3.4'
39
39
compile ' thereisnospon.codeview:codeview:0.3.1'
40
40
compile ' com.anjlab.android.iab.v3:library:1.0.+'
41
41
compile(' com.crashlytics.sdk.android:crashlytics:2.6.5@aar' ) {
42
- transitive = true ;
42
+ transitive = true
43
43
}
44
44
45
45
Original file line number Diff line number Diff line change 3
3
buildscript {
4
4
repositories {
5
5
jcenter()
6
+ google()
6
7
maven { url ' https://maven.google.com' }
7
8
maven { url ' https://maven.fabric.io/public' }
8
9
}
9
10
dependencies {
10
- classpath ' com.android.tools.build:gradle:3.0.0-alpha6 '
11
+ classpath ' com.android.tools.build:gradle:3.0.0-beta7 '
11
12
classpath ' io.fabric.tools:gradle:1.+'
12
13
// NOTE: Do not place your application dependencies here; they belong
13
14
// in the individual module build.gradle files
@@ -17,10 +18,22 @@ buildscript {
17
18
allprojects {
18
19
repositories {
19
20
jcenter()
21
+ google()
20
22
maven { url ' https://maven.google.com' }
21
23
}
22
24
}
23
25
24
26
task clean (type : Delete ) {
25
27
delete rootProject. buildDir
26
28
}
29
+
30
+ ext {
31
+ // Sdk and tools
32
+ minSdkVersion = 21
33
+ targetSdkVersion = 26
34
+ compileSdkVersion = 26
35
+ buildToolsVersion = ' 26.0.2'
36
+
37
+ // App dependencies
38
+ supportLibraryVersion = ' 26.1.0'
39
+ }
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.1-milestone-1- all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.1-all.zip
You can’t perform that action at this time.
0 commit comments