-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
58 lines (53 loc) · 1.8 KB
/
AndroidManifest.xml
File metadata and controls
58 lines (53 loc) · 1.8 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.darshancomputing.tuner"
android:sharedUserId="com.darshancomputing.tuner"
android:installLocation="auto"
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="23"
android:versionName="3.0.0-dev"
>
<application
android:label="@string/app_full_name"
android:icon="@drawable/app_icon"
android:hardwareAccelerated="true"
android:process="com.darshancomputing.tuner"
android:allowBackup="false"
android:resizeableActivity="true"
>
<activity
android:name=".TunerActivity"
android:label="@string/app_launcher_name"
android:theme="@style/main_theme"
android:screenOrientation="unspecified"
android:launchMode="singleTop"
android:exported="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".HelpActivity"
android:theme="@style/bi_help_theme"
android:stateNotNeeded="true"
android:excludeFromRecents="true"
android:exported="false"
/>
<activity
android:name=".SettingsActivity"
android:theme="@style/main_theme"
android:excludeFromRecents="true"
android:exported="false"
/>
</application>
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
</manifest>