From 5865e91a7a4f71a946500f445dba46f28d9d2542 Mon Sep 17 00:00:00 2001 From: makototaguchi1110 Date: Tue, 26 Sep 2023 12:34:42 +0900 Subject: [PATCH] add manifest permission for unity android --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index dc5daab..dbded8d 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,29 @@ BaseTenjin instance = Tenjin.getInstance(""); instance.SetAppStoreType(AppStoreType.googleplay); ``` +The Tenjin SDK requires the following permissions: + +```xml + + +``` + +Google Play Services will require all API level 32 (Android 13) apps using the advertising_id(Android Advertising ID (AAID)) to declare the Google Play Services AD_ID permission (shown below) in their manifest file. You are required to update the tenjin-android-sdk to version 1.12.8 in order to use the below permission. + +```xml + +``` + +### Android Advertising ID (AAID) and Install Referrer +Add Android Advertising ID (AAID) and Install Referrer libraries, add it to your build.gradle file. + +```java +dependencies { + implementation 'com.google.android.gms:play-services-ads-identifier:{version}' + implementation 'com.android.installreferrer:installreferrer:{version}' +} +``` + ## Amazon store By default, unspecified is the default App Store. Update the app store value to amazon, if you distribute your app on Amazon store.