File tree Expand file tree Collapse file tree 3 files changed +22
-14
lines changed Expand file tree Collapse file tree 3 files changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ apply plugin: 'com.android.application'
13
13
apply plugin : ' spoon'
14
14
15
15
android {
16
- compileSdkVersion 24
17
- buildToolsVersion " 24.0.0 "
16
+ compileSdkVersion compileSdkVer
17
+ buildToolsVersion buildToolsVer
18
18
19
19
defaultConfig {
20
20
applicationId " com.stealthcotper.networktools"
21
- minSdkVersion 14
22
- targetSdkVersion 24
23
- versionCode 5
24
- versionName " 0.1.06 "
21
+ minSdkVersion minSdkVer
22
+ targetSdkVersion targetSdkVer
23
+ versionCode 6
24
+ versionName " 0.1.08 "
25
25
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
26
26
}
27
27
buildTypes {
@@ -48,8 +48,8 @@ spoon {
48
48
49
49
dependencies {
50
50
compile fileTree(dir : ' libs' , include : [' *.jar' ])
51
- compile ' com.android.support:appcompat-v7:24.2.0 '
52
- compile ' com.android.support:design:24.2.0 '
51
+ compile " com.android.support:appcompat-v7:$s upportLibVer "
52
+ compile " com.android.support:design:$s upportLibVer "
53
53
compile project(' :library' )
54
54
55
55
testCompile ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -21,3 +21,11 @@ allprojects {
21
21
task clean (type : Delete ) {
22
22
delete rootProject. buildDir
23
23
}
24
+
25
+ subprojects {
26
+ ext. compileSdkVer = 24
27
+ ext. buildToolsVer = " 24.0.0"
28
+ ext. minSdkVer = 10
29
+ ext. targetSdkVer = 24
30
+ ext. supportLibVer = " 24.0.0"
31
+ }
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 24
5
- buildToolsVersion " 24.0.0 "
4
+ compileSdkVersion compileSdkVer
5
+ buildToolsVersion buildToolsVer
6
6
7
7
defaultConfig {
8
- minSdkVersion 14
9
- targetSdkVersion 24
10
- versionCode 2
11
- versionName " 0.1.3 "
8
+ minSdkVersion minSdkVer
9
+ targetSdkVersion targetSdkVer
10
+ versionCode 3
11
+ versionName " 0.2.0 "
12
12
}
13
13
buildTypes {
14
14
release {
You can’t perform that action at this time.
0 commit comments