forked from Countly/countly-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
54 lines (46 loc) · 1.99 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ly.count.android.sdk.messaging"
android:versionCode="1"
android:versionName="15.02" >
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="ly.count.android.sdk.messaging.ProxyActivity"
android:label="@string/app_name"
android:noHistory="true"
android:theme="@android:style/Theme.Translucent" />
<receiver
android:name="ly.count.android.sdk.messaging.CountlyMessaging"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="ly.count.android.api" />
</intent-filter>
</receiver>
<service android:name="ly.count.android.sdk.messaging.CountlyMessagingService" >
<meta-data
android:name="broadcast_action"
android:value="ly.count.android.api.broadcast" />
</service>
<service
android:name="org.openudid.OpenUDID_service"
android:exported="false" >
<intent-filter>
<action android:name="org.OpenUDID.GETUDID" />
</intent-filter>
</service>
</application>
</manifest>