-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #288 from adjust/v4115
V4120
- Loading branch information
Showing
46 changed files
with
3,136 additions
and
705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
-keep public class com.adjust.sdk.** { *; } | ||
-keep class com.google.android.gms.common.ConnectionResult { | ||
int SUCCESS; | ||
} | ||
-keep class com.google.android.gms.ads.identifier.AdvertisingIdClient { | ||
com.google.android.gms.ads.identifier.AdvertisingIdClient$Info getAdvertisingIdInfo(android.content.Context); | ||
} | ||
-keep class com.google.android.gms.ads.identifier.AdvertisingIdClient$Info { | ||
java.lang.String getId(); | ||
boolean isLimitAdTrackingEnabled(); | ||
} | ||
-keep class dalvik.system.VMRuntime { | ||
java.lang.String getRuntime(); | ||
} | ||
-keep class android.os.Build { | ||
java.lang.String[] SUPPORTED_ABIS; | ||
java.lang.String CPU_ABI; | ||
} | ||
-keep class android.content.res.Configuration { | ||
android.os.LocaledList getLocales(); | ||
java.util.Locale locale; | ||
} | ||
-keep class android.os.LocaledList { | ||
java.util.Locale get(int); | ||
} | ||
-keep public class com.android.installreferrer.** { *; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.adjust.sdk"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adjust.sdk"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
|
||
<uses-sdk | ||
android:minSdkVersion="9" | ||
android:targetSdkVersion="25" /> | ||
<application /> | ||
<application> | ||
<receiver android:name="com.adjust.sdk.AdjustReferrerReceiver" android:exported="true"> | ||
<intent-filter> | ||
<action android:name="com.android.vending.INSTALL_REFERRER" /> | ||
</intent-filter> | ||
</receiver> | ||
</application> | ||
</manifest> |
Oops, something went wrong.