File tree Expand file tree Collapse file tree 5 files changed +25
-24
lines changed Expand file tree Collapse file tree 5 files changed +25
-24
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
jcenter()
7
7
}
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.0.1 '
9
+ classpath ' com.android.tools.build:gradle:3.1.4 '
10
10
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.5'
11
11
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
12
12
classpath ' com.github.megatronking.stringfog:gradle-plugin:2.0.0'
@@ -18,6 +18,7 @@ buildscript {
18
18
19
19
allprojects {
20
20
repositories {
21
+ google()
21
22
jcenter()
22
23
}
23
24
}
Original file line number Diff line number Diff line change 1
- # Mon Dec 28 10:00:20 PST 2015
1
+ # Thu Nov 15 15:32:55 CST 2018
2
2
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 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.4 -all.zip
Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ apply plugin: 'groovy'
2
2
// apply plugin: 'maven'
3
3
4
4
dependencies {
5
- compile gradleApi()
6
- compile localGroovy()
7
- compile ' com.android.tools.build:gradle:2.2.0'
8
- compile ' org.ow2.asm:asm-all:5.0.4'
9
- compile ' com.squareup:javapoet:1.9.0'
10
- compile project(' :stringfog-interface' )
5
+ implementation gradleApi()
6
+ implementation localGroovy()
7
+ implementation ' com.android.tools.build:gradle:2.2.0'
8
+ implementation ' org.ow2.asm:asm-all:5.0.4'
9
+ implementation ' com.squareup:javapoet:1.9.0'
10
+ implementation project(' :stringfog-interface' )
11
11
}
12
12
13
13
sourceSets {
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ stringfog {
12
12
}
13
13
14
14
android {
15
- compileSdkVersion 25
15
+ compileSdkVersion 28
16
16
defaultConfig {
17
17
applicationId " com.github.megatronking.stringfog"
18
18
minSdkVersion 15
19
- targetSdkVersion 25
19
+ targetSdkVersion 28
20
20
versionCode 1
21
21
versionName " 1.0"
22
22
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -30,14 +30,14 @@ android {
30
30
}
31
31
32
32
dependencies {
33
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
34
- androidTestCompile (' com.android.support.test.espresso:espresso-core:2.2.2' , {
33
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
34
+ androidTestImplementation (' com.android.support.test.espresso:espresso-core:2.2.2' , {
35
35
exclude group : ' com.android.support' , module : ' support-annotations'
36
36
})
37
- compile ' com.android.support:appcompat-v7:25.1.1 '
38
- compile project(' :stringfog-sample-library' )
39
- testCompile ' junit:junit:4.12'
37
+ implementation ' com.android.support:appcompat-v7:28.0.0 '
38
+ implementation project(' :stringfog-sample-library' )
39
+ testImplementation ' junit:junit:4.12'
40
40
41
41
// xor加解密库,stringfog中的implementation需依赖此库
42
- compile ' com.github.megatronking.stringfog:xor:1.0.0'
42
+ implementation ' com.github.megatronking.stringfog:xor:1.0.0'
43
43
}
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ stringfog {
11
11
}
12
12
13
13
android {
14
- compileSdkVersion 26
14
+ compileSdkVersion 28
15
15
defaultConfig {
16
16
minSdkVersion 15
17
- targetSdkVersion 26
17
+ targetSdkVersion 28
18
18
versionCode 1
19
19
versionName " 1.0"
20
20
@@ -30,11 +30,11 @@ android {
30
30
}
31
31
32
32
dependencies {
33
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
34
- androidTestCompile (' com.android.support.test.espresso:espresso-core:2.2.2' , {
33
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
34
+ androidTestImplementation (' com.android.support.test.espresso:espresso-core:2.2.2' , {
35
35
exclude group : ' com.android.support' , module : ' support-annotations'
36
36
})
37
- compile ' com.android.support:appcompat-v7:26.+ '
38
- compile ' com.github.megatronking.stringfog:xor:1.0.0'
39
- testCompile ' junit:junit:4.12'
37
+ implementation ' com.android.support:appcompat-v7:28.0.0 '
38
+ implementation ' com.github.megatronking.stringfog:xor:1.0.0'
39
+ testImplementation ' junit:junit:4.12'
40
40
}
You can’t perform that action at this time.
0 commit comments