File tree 3 files changed +20
-28
lines changed
3 files changed +20
-28
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 25
5
- buildToolsVersion " 27.0.3"
6
-
4
+ compileSdkVersion 28
5
+ buildToolsVersion " 29.0.3"
7
6
8
7
defaultConfig {
9
8
applicationId " com.phikal.regex"
10
9
minSdkVersion 16
11
- targetSdkVersion 24
10
+ targetSdkVersion 28
12
11
versionCode 5
13
12
versionName " 1.3.1"
14
13
}
14
+
15
15
buildTypes {
16
16
release {
17
17
minifyEnabled true
18
- shrinkResources true
19
18
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
20
19
}
21
20
}
21
+
22
22
compileOptions {
23
23
sourceCompatibility JavaVersion . VERSION_1_8
24
24
targetCompatibility JavaVersion . VERSION_1_8
25
25
}
26
+
27
+ lintOptions {
28
+ disable ' GoogleAppIndexingWarning'
29
+ }
26
30
}
27
31
28
32
dependencies {
29
- implementation fileTree(include : [' *.jar' ], dir : ' libs' )
30
- implementation ' com.android.support:appcompat-v7:25.3.1'
31
- implementation ' com.android.support:design:25.3.1'
32
- implementation ' com.android.support:support-v4:25.3.1'
33
+ implementation ' com.android.support:support-v4:28.0.0'
33
34
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
buildscript {
4
4
repositories {
5
- jcenter()
6
5
google()
6
+ jcenter()
7
7
}
8
+
8
9
dependencies {
9
10
classpath ' com.android.tools.build:gradle:3.6.3'
11
+
12
+ // NOTE: Do not place your application dependencies here; they belong
13
+ // in the individual module build.gradle files
10
14
}
11
15
}
12
16
13
17
allprojects {
14
18
repositories {
15
- jcenter()
16
19
google()
20
+ jcenter()
17
21
}
18
22
}
23
+
24
+ task clean (type : Delete ) {
25
+ delete rootProject. buildDir
26
+ }
You can’t perform that action at this time.
0 commit comments