Skip to content

Commit 0077a1b

Browse files
committed
upgrade gradle version
1 parent cef3125 commit 0077a1b

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ dependencies {
113113
implementation 'com.google.protobuf.nano:protobuf-javanano:3.2.0rc2'
114114
quickstepImplementation fileTree(dir: "quickstep/libs", include: 'sysui_shared.jar')
115115
testImplementation 'junit:junit:4.13.2'
116-
androidTestImplementation 'org.mockito:mockito-core:3.2.4'
116+
androidTestImplementation 'org.mockito:mockito-core:4.0.0'
117117
androidTestImplementation 'com.google.dexmaker:dexmaker:1.2'
118118
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.2'
119119
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
120120
androidTestImplementation 'androidx.test:rules:1.3.0'
121121
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
122-
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
122+
androidTestImplementation 'androidx.annotation:annotation:1.2.0'
123123
implementation project(':mxlibrary')
124124
implementation project(':mxtheme')
125125
implementation project(':effectivecard')

effectivecard/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 29
4+
compileSdkVersion rootProject.compileSdkVersion
55

66
defaultConfig {
7-
minSdkVersion 19
8-
targetSdkVersion 29
7+
minSdkVersion rootProject.minSdkVersion
8+
targetSdkVersion rootProject.targetSdkVersion
99

1010
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1111
consumerProguardFiles 'consumer-rules.pro'

floatwindow/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 29
5-
buildToolsVersion "29.0.3"
4+
compileSdkVersion rootProject.compileSdkVersion
65

76
defaultConfig {
8-
minSdkVersion 19
9-
targetSdkVersion 29
7+
minSdkVersion rootProject.minSdkVersion
8+
targetSdkVersion rootProject.targetSdkVersion
109

1110
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1211
consumerProguardFiles 'consumer-rules.pro'

launcherclient/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 29
4+
compileSdkVersion rootProject.compileSdkVersion
55

66
defaultConfig {
7-
minSdkVersion 19
8-
targetSdkVersion 29
7+
minSdkVersion rootProject.minSdkVersion
8+
targetSdkVersion rootProject.targetSdkVersion
99

1010
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1111
consumerProguardFiles 'consumer-rules.pro'

0 commit comments

Comments
 (0)