-
Notifications
You must be signed in to change notification settings - Fork 13
/
AndroidManifest.xml
17 lines (17 loc) · 1.29 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version='1.0' encoding='UTF-8'?>
<manifest package='org.ruboto.core' android:installLocation='auto' android:versionCode='10006' android:versionName='1.0.6' xmlns:android='http://schemas.android.com/apk/res/android'>
<application android:hardwareAccelerated='true' android:icon='@drawable/ic_launcher' android:label='@string/app_name' android:largeHeap='true'>
<activity android:label='@string/app_name' android:name='RubotoCoreActivity'>
<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'/>
<activity android:configChanges='orientation' android:exported='false' android:name='org.ruboto.SplashActivity' android:noHistory='true'/>
</application>
<uses-sdk android:minSdkVersion='15' android:targetSdkVersion='15'/>
<uses-feature android:name='android.hardware.touchscreen' android:required='false'/>
</manifest>