-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathAndroidManifest.xml
77 lines (66 loc) · 2.56 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.deploygate.sample"
android:versionCode="2"
android:versionName="1.0"
>
<!--
This permission is necessary to enable DeployGate's Remote LogCat on pre-JellyBean platforms.
You can remove it you don't need the feature.
-->
<uses-permission
android:name="android.permission.READ_LOGS"
android:maxSdkVersion="15"
/>
<!-- only for sample app -->
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<!-- collecting stats data from app&device -->
<uses-permission android:name="com.deploygate.permission.ACCESS_SDK" />
<!--
If you have multiple processes in your application, or you want to customize SDK initializer,
you need to add your own Application class here. In this example, the class is
com.deploygate.sample.App
so you need to add the attribute below to the following <application> tag.
android:name=".App"
Please refer the source code of the class to how to implement the code.
-->
<application
android:name=".App"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name=".SampleActivity"
android:exported="true"
android:label="@string/app_name"
android:windowSoftInputMode="stateHidden"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".DirectBootBroadcastReceiver"
android:directBootAware="true"
android:exported="false"
>
<intent-filter>
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver
android:name=".BootBroadcastReceiver"
android:exported="false"
>
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!-- SDK will be initialized through ContentProvider by default -->
<!-- Please refer to stablereal/AndroidManifest.xml -->
</application>
<queries>
<provider android:authorities="com.deploygate.external.sdk" />
</queries>
</manifest>