File tree 3 files changed +17
-10
lines changed
src/main/java/wendu/dsbridge
3 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 3
3
buildscript {
4
4
repositories {
5
5
jcenter()
6
+ maven {
7
+ url ' https://maven.google.com/'
8
+ name ' Google'
9
+ }
6
10
}
7
11
dependencies {
8
- classpath ' com.android.tools.build:gradle:2.3.2 '
12
+ classpath ' com.android.tools.build:gradle:3.5.0 '
9
13
10
14
// NOTE: Do not place your application dependencies here; they belong
11
15
// in the individual module build.gradle files
@@ -14,6 +18,10 @@ buildscript {
14
18
allprojects {
15
19
repositories {
16
20
jcenter()
21
+ maven {
22
+ url ' https://maven.google.com/'
23
+ name ' Google'
24
+ }
17
25
}
18
26
}
19
27
task clean (type : Delete ) {
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 23
5
- buildToolsVersion ' 25.0.0 '
4
+ compileSdkVersion 28
5
+ buildToolsVersion ' 25.0.3 '
6
6
7
7
defaultConfig {
8
- minSdkVersion 11
9
- targetSdkVersion 23
8
+ minSdkVersion 14
9
+ targetSdkVersion 28
10
10
versionCode 1
11
11
versionName " 1.0"
12
12
@@ -25,10 +25,10 @@ android {
25
25
}
26
26
27
27
dependencies {
28
- compile fileTree(dir : ' libs' , include : [' *.jar' ])
29
- androidTestCompile (' com.android.support.test.espresso:espresso-core:2.2.2' , {
28
+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
29
+ androidTestImplementation (' com.android.support.test.espresso:espresso-core:2.2.2' , {
30
30
exclude group : ' com.android.support' , module : ' support-annotations'
31
31
})
32
- compile ' com.android.support:appcompat-v7:23.4 .0'
33
- testCompile ' junit:junit:4.12'
32
+ implementation ' com.android.support:appcompat-v7:28.0 .0'
33
+ testImplementation ' junit:junit:4.12'
34
34
}
Original file line number Diff line number Diff line change 3
3
import android .annotation .SuppressLint ;
4
4
import android .annotation .TargetApi ;
5
5
import android .app .Activity ;
6
- //import android.app.AlertDialog;
7
6
import android .app .Dialog ;
8
7
import android .content .Context ;
9
8
import android .content .DialogInterface ;
You can’t perform that action at this time.
0 commit comments