Fixing AOSP tests after AndroidX migration

Test: adb shell am instrument -w -r -e debug false com.android.launcher3.tests/androidx.test.runner.AndroidJUnitRunner
Change-Id: I72bf7095087b012a6eceac71ee02f2d7a5c8c51b
This commit is contained in:
Vadim Tryshev 2018-08-24 17:48:25 -07:00
parent 98afc96461
commit a3fd1e5bfe
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ android {
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {

View File

@ -28,7 +28,7 @@
<instrumentation
android:functionalTest="false"
android:handleProfiling="false"
android:name="android.support.test.runner.AndroidJUnitRunner"
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="com.android.launcher3" >
</instrumentation>
</manifest>