|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 | | - package="ly.count.android.demo"> |
| 3 | + package="ly.count.android.demo"> |
4 | 4 |
|
5 | | - <uses-permission android:name="android.permission.INTERNET" /> |
6 | | - <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
7 | | - <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
| 5 | + <uses-permission android:name="android.permission.INTERNET"/> |
| 6 | + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 7 | + <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> |
8 | 8 |
|
9 | | - <uses-permission android:name="${applicationId}.CountlyPush.BROADCAST_PERMISSION" /> |
| 9 | + <uses-permission android:name="${applicationId}.CountlyPush.BROADCAST_PERMISSION"/> |
10 | 10 | <uses-permission |
11 | 11 | android:name="android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS" |
12 | | - android:maxSdkVersion="30" /> |
| 12 | + android:maxSdkVersion="30"/> |
13 | 13 |
|
14 | 14 |
|
15 | 15 | <application |
|
24 | 24 | android:configChanges="orientation|screenSize" |
25 | 25 | android:exported="true"> |
26 | 26 | <intent-filter> |
27 | | - <action android:name="android.intent.action.MAIN" /> |
| 27 | + <action android:name="android.intent.action.MAIN"/> |
28 | 28 |
|
29 | | - <category android:name="android.intent.category.LAUNCHER" /> |
| 29 | + <category android:name="android.intent.category.LAUNCHER"/> |
30 | 30 | </intent-filter> |
31 | 31 | </activity> |
32 | 32 |
|
33 | 33 | <service |
34 | 34 | android:name=".DemoFirebaseMessagingService" |
35 | 35 | android:exported="false"> |
36 | 36 | <intent-filter> |
37 | | - <action android:name="com.google.firebase.MESSAGING_EVENT" /> |
| 37 | + <action android:name="com.google.firebase.MESSAGING_EVENT"/> |
38 | 38 | </intent-filter> |
39 | 39 | </service> |
40 | 40 |
|
|
50 | 50 | <activity |
51 | 51 | android:name=".ActivityExampleAPM" |
52 | 52 | android:label="@string/activity_name_apm" |
53 | | - android:configChanges="orientation|screenSize"></activity> |
| 53 | + android:configChanges="orientation|screenSize"/> |
54 | 54 |
|
55 | 55 | <activity |
56 | 56 | android:name=".ActivityExampleCrashReporting" |
57 | 57 | android:label="@string/activity_name_crash_reporting" |
58 | | - android:configChanges="orientation|screenSize"></activity> |
| 58 | + android:configChanges="orientation|screenSize"/> |
59 | 59 |
|
60 | 60 | <activity |
61 | 61 | android:name=".ActivityExampleCustomEvents" |
62 | 62 | android:label="@string/activity_name_custom_events" |
63 | | - android:configChanges="orientation|screenSize"></activity> |
| 63 | + android:configChanges="orientation|screenSize"/> |
64 | 64 |
|
65 | 65 | <activity |
66 | 66 | android:name=".ActivityExampleMultiThreading" |
67 | 67 | android:label="@string/activity_name_multithreading" |
68 | | - android:configChanges="orientation|screenSize"></activity> |
| 68 | + android:configChanges="orientation|screenSize"/> |
69 | 69 |
|
70 | 70 | <activity |
71 | 71 | android:name=".ActivityExampleOthers" |
72 | 72 | android:label="@string/activity_name_others" |
73 | | - android:configChanges="orientation|screenSize"></activity> |
| 73 | + android:configChanges="orientation|screenSize"/> |
74 | 74 |
|
75 | 75 | <activity |
76 | 76 | android:name=".ActivityExampleUserDetails" |
77 | 77 | android:label="@string/activity_name_user_detail" |
78 | | - android:configChanges="orientation|screenSize"></activity> |
| 78 | + android:configChanges="orientation|screenSize"/> |
79 | 79 |
|
80 | 80 | <activity |
81 | 81 | android:name=".ActivityExampleViewTracking" |
82 | 82 | android:label="@string/activity_name_view_tracking" |
83 | | - android:configChanges="orientation|screenSize"></activity> |
| 83 | + android:configChanges="orientation|screenSize"/> |
84 | 84 |
|
85 | 85 | <activity |
86 | 86 | android:name=".ActivityExampleAutoViewTracking" |
87 | 87 | android:label="Multiple view tracking options" |
88 | | - android:configChanges="orientation|screenSize"></activity> |
| 88 | + android:configChanges="orientation|screenSize"/> |
89 | 89 |
|
90 | 90 | <activity |
91 | 91 | android:name=".ActivityExampleRemoteConfig" |
92 | 92 | android:label="@string/activity_name_remote_config" |
93 | | - android:configChanges="orientation|screenSize"></activity> |
| 93 | + android:configChanges="orientation|screenSize"/> |
94 | 94 | <activity |
95 | 95 | android:name=".ActivityExampleDeviceId" |
96 | 96 | android:label="@string/activity_name_device_id" |
97 | | - android:configChanges="orientation|screenSize"></activity> |
| 97 | + android:configChanges="orientation|screenSize"/> |
98 | 98 |
|
99 | 99 | <activity |
100 | 100 | android:name=".ActivityExampleFeedback" |
101 | 101 | android:label="@string/activity_name_feedback" |
102 | | - android:configChanges="orientation|screenSize"></activity> |
| 102 | + android:configChanges="orientation|screenSize"/> |
103 | 103 |
|
104 | 104 | <activity |
105 | 105 | android:name=".ActivityExampleTests" |
106 | | - android:exported="false" /> |
| 106 | + android:exported="false"/> |
107 | 107 |
|
108 | 108 | <activity |
109 | 109 | android:name=".ActivityExampleDeepLinkA" |
|
112 | 112 | android:exported="true"> |
113 | 113 |
|
114 | 114 | <intent-filter android:label="@string/deep_link"> |
115 | | - <action android:name="android.intent.action.VIEW" /> |
| 115 | + <action android:name="android.intent.action.VIEW"/> |
116 | 116 |
|
117 | | - <category android:name="android.intent.category.DEFAULT" /> |
118 | | - <category android:name="android.intent.category.BROWSABLE" /> |
| 117 | + <category android:name="android.intent.category.DEFAULT"/> |
| 118 | + <category android:name="android.intent.category.BROWSABLE"/> |
119 | 119 |
|
120 | 120 | <!-- Accepts URIs that begin with "countly://sample_a” --> |
121 | 121 | <!-- test with adb shell am start -a android.intent.action.VIEW -d "countly://test" ly.count.android.demo --> |
122 | 122 | <data |
123 | 123 | android:scheme="countly" |
124 | | - android:host="sample_a" /> |
| 124 | + android:host="sample_a"/> |
125 | 125 | </intent-filter> |
126 | 126 | </activity> |
127 | 127 |
|
|
132 | 132 | android:exported="true"> |
133 | 133 |
|
134 | 134 | <intent-filter android:label="@string/deep_link"> |
135 | | - <action android:name="android.intent.action.VIEW" /> |
| 135 | + <action android:name="android.intent.action.VIEW"/> |
136 | 136 |
|
137 | | - <category android:name="android.intent.category.DEFAULT" /> |
138 | | - <category android:name="android.intent.category.BROWSABLE" /> |
| 137 | + <category android:name="android.intent.category.DEFAULT"/> |
| 138 | + <category android:name="android.intent.category.BROWSABLE"/> |
139 | 139 |
|
140 | 140 | <!-- Accepts URIs that begin with "countly://sample_b” --> |
141 | 141 | <!-- test with adb shell am start -a android.intent.action.VIEW -d "countly://test" ly.count.android.demo --> |
142 | 142 | <data |
143 | 143 | android:scheme="countly" |
144 | | - android:host="sample_b" /> |
| 144 | + android:host="sample_b"/> |
145 | 145 | </intent-filter> |
146 | 146 | </activity> |
147 | | - <activity android:name=".ActivityExampleKotlin" /> |
| 147 | + <activity android:name=".ActivityExampleKotlin"/> |
148 | 148 | </application> |
149 | 149 |
|
150 | 150 | </manifest> |
0 commit comments