Make manifest usable with android_instrumentation_test()s in google3 (#8545)

This commit is contained in:
John Cormie 2021-09-22 18:53:16 +00:00 committed by GitHub
parent 3049c2c147
commit 46dbac3eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 4 deletions

View File

@ -1,8 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.grpc.binder">
<application>
<service android:name="io.grpc.binder.HostServices$HostService1"/>
<service android:name="io.grpc.binder.HostServices$HostService2"/>
</application>
<instrumentation
android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="io.grpc.binder" />
<application android:debuggable="true">
<uses-library android:name="android.test.runner" />
<service android:name="io.grpc.binder.HostServices$HostService1" />
<service android:name="io.grpc.binder.HostServices$HostService2" />
</application>
</manifest>