-
Notifications
You must be signed in to change notification settings - Fork 12
/
AndroidManifest.xml
80 lines (69 loc) · 3.54 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
76
77
78
79
80
<!--
/*
* Copyright 2012 Shell M. Shrader
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shellware.adaptronic.adaptive.tuner"
android:versionCode="2023"
android:versionName="1.2.15"
android:installLocation="preferExternal">
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="true"
android:backupAgent="com.shellware.adaptronic.adaptivetuner.MainActivityBackupAgentHelper"
android:theme="@android:style/Theme.Holo" >
<activity
android:name="com.shellware.adaptronic.adaptivetuner.MainActivity"
android:label="@string/title_activity_main"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
</activity>
<activity android:name="com.shellware.adaptronic.adaptivetuner.preferences.AdaptivePreferences"
android:theme="@android:style/Theme.Holo" />
<service
android:name="com.shellware.adaptronic.adaptivetuner.services.ConnectionService"
android:exported="true">
<intent-filter>
<action android:name="com.shellware.adaptronic.adaptivetuner.action.CONNECT_BT" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.CONNECT_USB" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.DISCONNECT" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.UI_INACTIVE" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.UI_ACTIVE" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.READ_FUEL_MAP" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.READ_CRANKING_MAP" />
<action android:name="com.shellware.adaptronic.adaptivetuner.action.SAVE_ECU_FILE" />
</intent-filter>
</service>
<meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAIqGUmRlrTxscSz23fMuDaUAhmoDF5u1BbVVflxg" />
</application>
</manifest>