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"
|
||||
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>
|
||||
|
|
Loading…
Reference in New Issue