summaryrefslogtreecommitdiff
path: root/simpleperf/demo/SimpleperfExampleOfKotlin
diff options
context:
space:
mode:
authorBrett Chabot <brettchabot@google.com>2018-12-20 12:19:58 -0800
committerBrett Chabot <brettchabot@google.com>2018-12-20 12:36:33 -0800
commit7c46f948bded8e9c90acec131c4a30d53e75c1ba (patch)
tree55b589cc952346f3b82f9f740a80e1605d4d6580 /simpleperf/demo/SimpleperfExampleOfKotlin
parent1f26a28afa4789581ed4b49b385aaf9dcf6aeede (diff)
downloadextras-7c46f948bded8e9c90acec131c4a30d53e75c1ba.tar.gz
Migrate system/extras to androidx.test
See go/jetpack-test-android-migration Test: compile Change-Id: I0549a1fc80de5c66b00bdf685c536f01e7c3ae65
Diffstat (limited to 'simpleperf/demo/SimpleperfExampleOfKotlin')
-rw-r--r--simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle b/simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle
index aa37a5b1..132e64bd 100644
--- a/simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle
+++ b/simpleperf/demo/SimpleperfExampleOfKotlin/app/build.gradle
@@ -15,7 +15,7 @@ android {
targetSdkVersion 26
versionCode 1
versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
@@ -27,7 +27,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
- androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
+ androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"