1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package =" com.goyourlife.gofit_demo" >
4
+
5
+ <uses-permission android : name =" android.permission.BLUETOOTH" />
6
+ <uses-permission android : name =" android.permission.BLUETOOTH_ADMIN" />
7
+ <uses-permission android : name =" android.permission.ACCESS_FINE_LOCATION" />
8
+ <uses-permission android : name =" android.permission.ACCESS_COARSE_LOCATION" />
9
+ <uses-permission android : name =" android.permission.INTERNET" />
10
+
11
+ <uses-feature
12
+ android : name =" android.hardware.bluetooth_le"
13
+ android : required =" true" />
14
+ <uses-feature
15
+ android : name =" android.hardware.location"
16
+ android : required =" false" />
17
+ <uses-feature
18
+ android : name =" android.hardware.location.gps"
19
+ android : required =" false" />
20
+
21
+ <application
22
+ android : allowBackup =" true"
23
+ android : icon =" @mipmap/ic_launcher"
24
+ android : label =" @string/app_name"
25
+ android : roundIcon =" @mipmap/ic_launcher_round"
26
+ android : supportsRtl =" true"
27
+ android : theme =" @style/AppBaseTheme" >
28
+ <activity android : name =" .MainActivity" >
29
+ <intent-filter >
30
+ <action android : name =" android.intent.action.MAIN" />
31
+
32
+ <category android : name =" android.intent.category.LAUNCHER" />
33
+ </intent-filter >
34
+ </activity >
35
+
36
+ <service
37
+ android : name =" com.golife.service.SyncService"
38
+ android : enabled =" true" />
39
+
40
+ <service
41
+ android : name =" com.golife.service.dfu.v20160706.DfuService"
42
+ android : enabled =" true" />
43
+
44
+ </application >
45
+
46
+ </manifest >
0 commit comments