1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="org.robolectric">
4  <application android:name="org.robolectric.shadows.testing.TestApplication"
5      android:allowBackup="true"
6      android:allowClearUserData="true"
7      android:allowTaskReparenting="true"
8      android:debuggable="true"
9      android:hasCode="true"
10      android:killAfterRestore="true"
11      android:persistent="true"
12      android:resizeable="true"
13      android:restoreAnyVersion="true"
14      android:largeScreens="true"
15      android:normalScreens="true"
16      android:smallScreens="true"
17      android:anyDensity="true"
18      android:testOnly="true"
19      android:vmSafeMode="true"/>
20</manifest>
21