mirror of https://github.com/grpc/grpc-java.git
Make manifest usable with android_instrumentation_test()s in google3 (#8545)
This commit is contained in:
parent
3049c2c147
commit
46dbac3eb6
|
|
@ -1,8 +1,15 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="io.grpc.binder">
|
package="io.grpc.binder">
|
||||||
|
|
||||||
<application>
|
<instrumentation
|
||||||
<service android:name="io.grpc.binder.HostServices$HostService1"/>
|
android:name="androidx.test.runner.AndroidJUnitRunner"
|
||||||
<service android:name="io.grpc.binder.HostServices$HostService2"/>
|
android:targetPackage="io.grpc.binder" />
|
||||||
</application>
|
|
||||||
|
<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>
|
</manifest>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue