File tree Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Expand file tree Collapse file tree 4 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ sudo: false
7
7
8
8
android :
9
9
components :
10
- - build-tools-21.1 .1
10
+ - build-tools-23.0 .1
11
11
12
12
- android-22
13
+ - android-23
13
14
14
15
- extra-android-support
15
16
- extra-android-m2repository
Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ dependencies {
36
36
}
37
37
38
38
android {
39
- compileSdkVersion 21
40
- buildToolsVersion " 21.1.1 "
39
+ compileSdkVersion rootProject . ext . compileSdkVersion
40
+ buildToolsVersion rootProject . ext . buildToolsVersion
41
41
42
42
defaultConfig {
43
- minSdkVersion 9
44
- targetSdkVersion 21
43
+ minSdkVersion rootProject . ext . minSdkVersion
44
+ targetSdkVersion rootProject . ext . targetSdkVersion
45
45
versionName project. version
46
46
versionCode 1
47
47
}
Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ dependencies {
35
35
}
36
36
37
37
android {
38
- compileSdkVersion 21
39
- buildToolsVersion " 21.1.1 "
38
+ compileSdkVersion rootProject . ext . compileSdkVersion
39
+ buildToolsVersion rootProject . ext . buildToolsVersion
40
40
41
41
defaultConfig {
42
- minSdkVersion 9
43
- targetSdkVersion 21
42
+ minSdkVersion rootProject . ext . minSdkVersion
43
+ targetSdkVersion rootProject . ext . targetSdkVersion
44
44
versionName project. version
45
45
versionCode 1
46
46
}
Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ buildscript {
15
15
}
16
16
17
17
ext {
18
- compileSdkVersion = 21
19
- buildToolsVersion = " 21.1 .1"
18
+ compileSdkVersion = 23
19
+ buildToolsVersion = " 23.0 .1"
20
20
21
21
minSdkVersion = 15
22
- targetSdkVersion = 21
22
+ targetSdkVersion = 23
23
23
24
24
facebookSDK = ' com.facebook.android:facebook-android-sdk:4.6.0'
25
25
androidSupport = ' com.android.support:support-v4:23.0.1'
You can’t perform that action at this time.
0 commit comments