Skip to content

Commit f7834e8

Browse files
committed
Configuring Adjust AndroidManifest.xml
1 parent 463b9c2 commit f7834e8

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.adjust.sdk">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adjust.sdk">
32

3+
<uses-permission android:name="android.permission.INTERNET" />
44
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
55
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
66

7-
<uses-sdk
8-
android:minSdkVersion="9"
9-
android:targetSdkVersion="25" />
10-
<application />
7+
<application>
8+
<receiver android:name="com.adjust.sdk.AdjustReferrerReceiver" android:exported="true">
9+
<intent-filter>
10+
<action android:name="com.android.vending.INSTALL_REFERRER" />
11+
</intent-filter>
12+
</receiver>
13+
</application>
1114
</manifest>

0 commit comments

Comments
 (0)