This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
forked from orient33/ble_ancs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAndroidManifest.xml
43 lines (39 loc) · 1.65 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jz.ios.ancs"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.glass.permission.DEVELOPMENT" />
<uses-feature
android:name="android.hardware.bluetooth_le"
android:required="true" />
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:name="jz.ios.ancs.Devices"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="com.google.android.glass.VoiceTrigger" android:resource="@xml/voice_trigger" />
</activity>
<activity android:name=".BLEConnect"></activity>
<activity android:name=".Notice"></activity>
<activity android:name=".MenuActivity"
android:theme="@style/MenuTheme" >
</activity>
<service android:name=".BLEservice" >
</service>
</application>
</manifest>