-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
15 lines (15 loc) · 987 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version='1.0' encoding='UTF-8'?>
<manifest package='org.sample.fixture10' android:versionCode='1' android:versionName='1.0' xmlns:android='http://schemas.android.com/apk/res/android'>
<application android:icon='@drawable/ic_launcher' android:label='@string/app_name'>
<activity android:label='@string/app_name' android:name='Fixture10Activity'>
<intent-filter>
<action android:name='android.intent.action.MAIN'/>
<category android:name='android.intent.category.LAUNCHER'/>
</intent-filter>
</activity>
<activity android:exported='false' android:name='org.ruboto.RubotoActivity'/>
<activity android:exported='false' android:name='org.ruboto.RubotoDialog' android:theme='@android:style/Theme.Dialog'/>
<service android:exported='false' android:name='org.ruboto.RubotoService'/>
</application>
<uses-sdk android:minSdkVersion='10' android:targetSdkVersion='10'/>
</manifest>