From my Junit test code, how do I access the value of android:targetPackage in Manifest within the Junit test app?
I am trying to extract "com.mycompany.mytestapp".
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.mycompany.mytestapp" />
...
</manifest>