@@ -6,14 +6,14 @@ plugins {
6
6
7
7
android {
8
8
9
- compileSdk 33
9
+ compileSdk 34
10
10
defaultConfig {
11
11
applicationId rootProject. ext. get(' applicationId' )
12
12
namespace rootProject. ext. get(' applicationId' )
13
13
versionName rootProject. ext. get(' versionName' )
14
14
versionCode rootProject. ext. get(' versionCode' )
15
15
manifestPlaceholders = [ accessToken : " " ]
16
- targetSdk 33
16
+ targetSdk 34
17
17
minSdk 22
18
18
setProperty(" archivesBaseName" , " github_client_" + versionName)
19
19
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -145,13 +145,18 @@ dependencies {
145
145
// jUnit
146
146
testImplementation " junit:junit:$junit_version "
147
147
148
+ // Required for connected tests.
149
+ // https://mvnrepository.com/artifact/androidx.test/monitor
150
+ debugImplementation " androidx.test:monitor:$test_monitor_version "
151
+
148
152
// https://mvnrepository.com/artifact/androidx.test.ext
149
- androidTestImplementation " androidx.test.ext:junit:1.1.5 "
153
+ androidTestImplementation " androidx.test.ext:junit:$t est_junit_version "
150
154
151
155
// https://mvnrepository.com/artifact/androidx.test
152
- androidTestImplementation " androidx.test:core:1.5.0"
153
- androidTestImplementation " androidx.test:runner:1.5.2"
154
- androidTestImplementation " androidx.test:rules:1.5.0"
156
+ // https://developer.android.com/jetpack/androidx/releases/test
157
+ androidTestImplementation " androidx.test:core:$test_core_version "
158
+ androidTestImplementation " androidx.test:runner:$test_runner_version "
159
+ androidTestImplementation " androidx.test:rules:$test_rules_version "
155
160
156
161
// https://mvnrepository.com/artifact/androidx.test.uiautomator/uiautomator
157
162
androidTestImplementation " androidx.test.uiautomator:uiautomator:$uiautomator_version "
0 commit comments