20 lines
780 B
XML
20 lines
780 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--- Include all the namespaces we will ever need anywhere, because this is the source the manifest merger uses for namespaces -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.robolectric.integrationtests.nativegraphics"
|
|
android:sharedUserId="android.uid.phone"
|
|
coreApp="true">
|
|
<uses-sdk
|
|
android:minSdkVersion="26"
|
|
android:targetSdkVersion="31" />
|
|
<application>
|
|
<activity
|
|
android:name="com.android.myroboapplication.WelcomeActivity"
|
|
android:exported="true">
|
|
</activity>
|
|
</application>
|
|
</manifest>
|