1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="org.robolectric"> 4 5 <uses-sdk android:targetSdkVersion="18"/> 6 <application android:name="org.robolectric.shadows.testing.TestApplication" 7 android:label="App Label"> 8 <meta-data android:name="org.robolectric.metaName1" android:value="metaValue1" /> 9 <meta-data android:name="org.robolectric.metaName2" android:value="metaValue2" /> 10 <meta-data android:name="org.robolectric.metaTrue" android:value="true" /> 11 <meta-data android:name="org.robolectric.metaFalse" android:value="false" /> 12 <meta-data android:name="org.robolectric.metaInt" android:value="123" /> 13 <meta-data android:name="org.robolectric.metaFloat" android:value="1.23" /> 14 <meta-data android:name="org.robolectric.metaColor" android:value="#FFFFFF" /> 15 <meta-data android:name="org.robolectric.metaBooleanFromRes" android:value="@bool/false_bool_value" /> 16 <meta-data android:name="org.robolectric.metaIntFromRes" android:value="@integer/test_integer1" /> 17 <meta-data android:name="org.robolectric.metaColorFromRes" android:value="@color/clear" /> 18 <meta-data android:name="org.robolectric.metaStringFromRes" android:value="@string/app_name" /> 19 <meta-data android:name="org.robolectric.metaStringOfIntFromRes" android:value="@string/str_int" /> 20 <meta-data android:name="org.robolectric.metaStringRes" android:resource="@string/app_name" /> 21 </application> 22</manifest> 23