• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--- Include all the namespaces we will ever need anywhere, because this is the source the manifest merger uses for namespaces -->
4<manifest xmlns:android="http://schemas.android.com/apk/res/android"
5          xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
6          xmlns:tools="http://schemas.android.com/tools"
7          package="org.robolectric.shadows"
8          android:sharedUserId="android.uid.phone"
9          coreApp="true">
10  <uses-sdk
11      android:minSdkVersion="26"
12      android:targetSdkVersion="31" />
13  <application>
14    <activity
15        android:name="com.android.myroboapplication.WelcomeActivity"
16        android:exported="true">
17    </activity>
18  </application>
19</manifest>
20