-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathAndroidManifest.xml
75 lines (75 loc) · 5.75 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version='1.0' encoding='UTF-8'?>
<manifest package='org.ruboto.irb' android:installLocation='preferExternal' android:versionCode='18' android:versionName='@string/version_name' xmlns:android='http://schemas.android.com/apk/res/android'>
<application android:hardwareAccelerated='true' android:icon='@drawable/icon' android:label='@string/app_name' android:largeHeap='true'>
<activity android:alwaysRetainTaskState='true' android:configChanges='orientation|screenSize' android:hardwareAccelerated='false' android:label='@string/app_name' android:launchMode='singleTop' android:name='IRB' android:windowSoftInputMode='adjustResize'>
<intent-filter>
<action android:name='android.intent.action.MAIN'/>
<category android:name='android.intent.category.LAUNCHER'/>
<category android:name='android.intent.category.MULTIWINDOW_LAUNCHER'/>
</intent-filter>
<intent-filter>
<action android:name='android.intent.action.VIEW'/>
<category android:name='android.intent.category.DEFAULT'/>
<category android:name='android.intent.category.BROWSABLE'/>
<data android:scheme='http'/>
<data android:host='*'/>
<data android:pathPattern='.*\\.rb'/>
</intent-filter>
</activity>
<activity android:configChanges='orientation|screenSize' android:name='ShortcutBuilder'>
<intent-filter>
<action android:name='android.intent.action.CREATE_SHORTCUT'/>
<category android:name='android.intent.category.DEFAULT'/>
</intent-filter>
</activity>
<activity android:configChanges='orientation|screenSize' android:name='ScriptLaunch'>
<intent-filter>
<action android:name='org.ruboto.intent.action.LAUNCH_SCRIPT'/>
<category android:name='android.intent.category.DEFAULT'/>
</intent-filter>
</activity>
<activity android:alwaysRetainTaskState='true' android:configChanges='orientation|screenSize' android:name='org.ruboto.RubotoActivity'/>
<activity android:configChanges='orientation|screenSize' android:name='org.ruboto.RubotoDialog' android:theme='@android:style/Theme.Dialog'/>
<activity android:name='org.ruboto.RubotoPreferenceActivity'/>
<activity android:configChanges='orientation|screenSize' android:name='net.android.facebook.TestConnect'/>
<activity android:configChanges='orientation|screenSize' android:name='net.android.facebook.TestPost'/>
<service android:exported='false' android:name='org.ruboto.RubotoService'/>
<uses-library name='com.sec.android.app.multiwindow' required='false'/>
<meta-data android:name='com.sec.android.support.multiwindow' android:value='true'/>
<meta-data android:name='com.sec.android.multiwindow.DEFAULT_SIZE_W' android:value='632.0dip'/>
<meta-data android:name='com.sec.android.multiwindow.DEFAULT_SIZE_H' android:value='598.0dip'/>
<meta-data android:name='com.sec.android.multiwindow.MINIMUM_SIZE_W' android:value='632.0dip'/>
<meta-data android:name='com.sec.android.multiwindow.MINIMUM_SIZE_H' android:value='598.0dip'/>
<activity android:configChanges='orientation|screenSize' android:exported='false' android:name='org.ruboto.SplashActivity'/>
</application>
<uses-sdk android:minSdkVersion='10' android:targetSdkVersion='17'/>
<supports-screens android:anyDensity='true' android:largeScreens='true' android:normalScreens='true' android:smallScreens='true' android:xlargeScreens='true'/>
<uses-feature android:name='android.hardware.telephony' android:required='false'/>
<uses-feature android:name='android.hardware.touchscreen' android:required='false'/>
<uses-feature android:name='android.hardware.location' android:required='false'/>
<uses-feature android:name='android.hardware.location.gps' android:required='false'/>
<uses-feature android:name='android.hardware.location.network' android:required='false'/>
<uses-feature android:name='android.hardware.wifi' android:required='false'/>
<uses-feature android:name='android.hardware.microphone' android:required='false'/>
<uses-feature android:name='android.hardware.camera' android:required='false'/>
<uses-feature android:name='android.hardware.camera.autofocus' android:required='false'/>
<uses-feature android:name='android.hardware.bluetooth' android:required='false'/>
<uses-permission android:name='android.permission.WRITE_EXTERNAL_STORAGE'/>
<uses-permission android:name='com.android.launcher.permission.INSTALL_SHORTCUT'/>
<uses-permission android:name='android.permission.INTERNET'/>
<uses-permission android:name='android.permission.ACCESS_FINE_LOCATION'/>
<uses-permission android:name='android.permission.ACCESS_COARSE_LOCATION'/>
<uses-permission android:name='android.permission.CALL_PHONE'/>
<uses-permission android:name='android.permission.SEND_SMS'/>
<uses-permission android:name='android.permission.VIBRATE'/>
<uses-permission android:name='android.permission.ACCESS_WIFI_STATE'/>
<uses-permission android:name='android.permission.CHANGE_WIFI_STATE'/>
<uses-permission android:name='android.permission.READ_PHONE_STATE'/>
<uses-permission android:name='android.permission.PERSISTENT_ACTIVITY'/>
<uses-permission android:name='android.permission.RESTART_PACKAGES'/>
<uses-permission android:name='android.permission.GET_TASKS'/>
<uses-permission android:name='android.permission.ACCESS_NETWORK_STATE'/>
<uses-permission android:name='android.permission.RECORD_AUDIO'/>
<uses-permission android:name='android.permission.CAMERA'/>
<uses-permission android:name='android.permission.BLUETOOTH'/>
</manifest>