Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runner/rules/javatests/androidx/test/rule/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ axt_android_library_test(
name = "GrantPermissionRuleTest",
srcs = ["GrantPermissionRuleTest.java"],
# runtime permissions only a thing from api 23+
device_list = devices(apis(min_api = 23)),
device_list = devices(apis(min_api = 24)),
deps = [
"//core",
"//ext/junit",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="androidx.test.multiprocess.app">
android:targetPackage="androidx.test.multiprocess.app"
android:targetProcesses="*">
<meta-data
android:name="remoteMethod"
android:value="androidx.test.espresso.remote.EspressoRemote#remoteInit"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,12 @@

<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="androidx.test.multiprocess.app">
android:targetPackage="androidx.test.multiprocess.app"
android:targetProcesses="foo.bar.global">

<!-- explicitly instrument global process: -->
<meta-data
android:name="targetProcess"
android:value="foo.bar.global"/>

<!-- TODO: change to the syntax after next emulator image update -->
<!--android:targetProcess="foo.bar"-->

android:name="remoteMethod"
android:value="androidx.test.espresso.remote.EspressoRemote#remoteInit"/>
</instrumentation>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,12 @@

<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="androidx.test.multiprocess.app">
android:targetPackage="androidx.test.multiprocess.app"
android:targetProcesses="androidx.test.multiprocess.app:idling">

<!-- explicitly instrument idling process: -->
<meta-data
android:name="targetProcess"
android:value="androidx.test.multiprocess.app:idling"/>

<!-- TODO: change to the syntax after next emulator image update -->
<!--android:targetProcess=":idling"-->

android:name="remoteMethod"
android:value="androidx.test.espresso.remote.EspressoRemote#remoteInit"/>
</instrumentation>

</manifest>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,12 @@

<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="androidx.test.multiprocess.app">
android:targetPackage="androidx.test.multiprocess.app"
android:targetProcesses="androidx.test.multiprocess.app:PID2">

<!-- explicitly instrument private process: -->
<meta-data
android:name="targetProcess"
android:value="androidx.test.multiprocess.app:PID2"/>

<!-- TODO: change to the syntax after next emulator image update -->
<!--android:targetProcess=":PID2"-->
android:name="remoteMethod"
android:value="androidx.test.espresso.remote.EspressoRemote#remoteInit"/>
</instrumentation>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ licenses(["notice"])
# Tests
# =========================================================

DEVICES = devices([23])
DEVICES = devices([28])

axt_android_application_test(
name = "DefaultProcessActivityTest",
Expand Down
Loading