Home | History | Annotate | Download | only in FBOTest
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      3     package="com.android.fbotest">
      4     <application android:label="_FBOTest">
      5         <activity android:name="FBOTest"
      6                   android:label="FBO Base Test"
      7                   android:theme="@android:style/Theme.Black.NoTitleBar">
      8             <intent-filter>
      9                 <action android:name="android.intent.action.MAIN" />
     10                 <category android:name="android.intent.category.LAUNCHER" />
     11             </intent-filter>
     12         </activity>
     13         <activity android:name="FBOSync"
     14                   android:label="FBO Sync Test"
     15                   android:theme="@android:style/Theme.Black.NoTitleBar">
     16             <intent-filter>
     17                 <action android:name="android.intent.action.MAIN" />
     18                 <category android:name="android.intent.category.LAUNCHER" />
     19             </intent-filter>
     20         </activity>
     21     </application>
     22 </manifest>
     23