This repository was archived by the owner on Oct 3, 2024. It is now read-only.
File tree 5 files changed +19
-14
lines changed
5 files changed +19
-14
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
2
2
3
3
android {
4
4
compileSdkVersion compileSdk
5
+ testOptions. unitTests. includeAndroidResources = true
5
6
6
7
defaultConfig {
7
8
applicationId " pub.devrel.easypermissions.sample"
@@ -20,6 +21,7 @@ android {
20
21
}
21
22
22
23
dependencies {
23
- implementation ' androidx.appcompat:appcompat:1.0.2'
24
+ implementation ' androidx.appcompat:appcompat:1.1.0'
25
+ implementation " androidx.annotation:annotation:1.1.0"
24
26
implementation project(' :easypermissions' )
25
27
}
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ buildscript {
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.3 .0'
10
- classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4 '
11
- classpath ' com.vanniktech:gradle-android-junit-jacoco-plugin:0.13 .0'
9
+ classpath ' com.android.tools.build:gradle:4.0 .0'
10
+ classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5 '
11
+ classpath ' com.vanniktech:gradle-android-junit-jacoco-plugin:0.16 .0'
12
12
}
13
13
}
14
14
35
35
36
36
bintrayOrg = ' easygoogle'
37
37
38
- compileSdk = 28
39
- targetSdk = 28
38
+ compileSdk = 30
39
+ targetSdk = 30
40
40
}
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ apply plugin: "com.vanniktech.android.junit.jacoco"
3
3
4
4
android {
5
5
compileSdkVersion compileSdk
6
+ testOptions. unitTests. includeAndroidResources = true
6
7
7
8
defaultConfig {
8
9
minSdkVersion 14
@@ -33,15 +34,16 @@ junitJacoco {
33
34
}
34
35
35
36
dependencies {
36
- api " androidx.appcompat:appcompat:1.0.2"
37
- api " androidx.core:core:1.0.1"
38
- api " androidx.fragment:fragment:1.0.0"
37
+ api " androidx.appcompat:appcompat:1.1.0"
38
+ api " androidx.annotation:annotation:1.1.0"
39
+ api " androidx.core:core:1.3.0"
40
+ api " androidx.fragment:fragment:1.2.5"
39
41
40
- testImplementation ' junit:junit:4.12 '
42
+ testImplementation ' junit:junit:4.13 '
41
43
testImplementation ' com.google.truth:truth:0.42'
42
44
testImplementation ' org.robolectric:robolectric:4.1'
43
- testImplementation ' androidx.test:core:1.1.0 '
44
- testImplementation ' androidx.fragment:fragment-testing:1.1.0-alpha03 '
45
+ testImplementation ' androidx.test:core:1.3.0-rc01 '
46
+ testImplementation ' androidx.fragment:fragment-testing:1.2.5 '
45
47
testImplementation ' org.mockito:mockito-core:2.23.4'
46
48
}
47
49
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ org.gradle.jvmargs=-Xmx1536m
20
20
org.gradle.configureondemand =true
21
21
22
22
# Required by Robolectric 4.x
23
- android.enableUnitTestBinaryResources =true
23
+ # android.enableUnitTestBinaryResources=true
24
24
25
25
# Move transitive dependencies to AndroidX
26
26
android.useAndroidX =true
Original file line number Diff line number Diff line change
1
+ # Tue Jul 07 16:12:58 CST 2020
1
2
distributionBase =GRADLE_USER_HOME
2
3
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
You can’t perform that action at this time.
0 commit comments