🔥月額$200でTenjinにフルアクセス - 全機能、アドオンなし、いつでもキャンセル可能。 価格と機能を見る
読了時間:6分
はい、Androidマニフェストファイルから次の行を削除しても問題ありません。
android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> Execution failed for task ':transformClassesWithDexForRelease'.
com.android.build.API.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/actions/ItemListIntents;このエラーは、別のバージョンのGooglePlayサービスライブラリを使用している場合に発生します。解決するには、Tenjin SDKを最新版にするか、次のライブラリを削除してください。
/Assets/Plugins/Android/play-services-basement-11.0.4.aarAndroidの他のアプリストア向けに2つのSDK、MSA OAID SDK(バージョン1.0.25の場合はminSdkVersionは21)、HuaweiリファラーSDK(minSdkVersionは19)のサポートを開始しました。これらのSDKはどちらも、minSdkVersionをそれぞれ16から19および19から21に更新する必要がありました。これが、tenjinのminSdkVersionが21である理由です。
最新のSDKが必要で、HuaweiリファラーSDKとMSA OAID SDKを統合する予定がない場合は、このブランチを使用してください。
一部のお客様は、 こちら のプラグインを使用しています。このプラグインはTenjinによって公式に作成されたものではないことに注意してください。
これは、 TenjninEditorPrefs.csの74行目を削除することで修正できます。それでも解決しない場合は、support@tenjin.comまで詳細をご連絡ください。これは、Tenjin経由でApplovin MAX ILRDを使用していない場合にのみ実施する必要があることに注意してください。
下記のパーミッションを削除してください。
<uses-permission android:name=“android.permission.READ_PHONE_STATE” />問題が解決しない場合は、support@tenjin.comまでメールでお問い合わせください。
現在、Huaweiスマートフォンは技術的にAndroid デバイスとはみなされていないため、このエラーを解決するには、Tenjin SDKがデバイスからOAIDを取得できるように、 こちら に従ってHuawei OADライブラリを実装していただく必要があります。
現在、Unity Codeless IAPはサポートされていません。Unity codelss IAPのサポートが開始されるまでは、代わりに従来のUnity IAPメソッドを使用するようお願いします。
現在、Tenjin SDKは、有効なレシートを添付したApp StoreまたはGoogle Playストアでの購入のみを処理レポートしています。外部での購入(マーケットプレイス取引、クレジットカード決済、その他IAP以外の収益など)については、TenjinのServer-to-Server(S2S)連携をご利用いただけます。詳細および設定手順については、support@tenjin.comまでお問い合わせください。
これを修正するには、ProGuard/R8を下記のように更新してください。
-keepattributes Signature
-keepattributes *Annotation*
-keep class com.google.gson.reflect.TypeToken { *; } 404 – アプリが設定されていません: App/Store ID が正しく設定されていない、App Store の種類が一致していない、または SDK キーが間違っている(設定変更後は数分待つ必要があります)
202 – 無効なデバイス識別子: 広告IDが欠落/無効、またはGDPR/オプトアウト設定が正しくありません
202 – 記録なし: SDKキーが無効化されている
401 – アクセス権限なし: SDKキーが無効または間違っている
Install Referrer エラー (Android): 復号キーが見つからないか、ProGuard/R8の設定が正しくない
After. Call connect() only once the user has made a selection on the ATT prompt.
もし connect() fires at the same time as (or before) the prompt, the ATT status is still “undetermined” and the SDK can’t read the IDFA — which weakens Attribution matching.
Correct order: Show ATT prompt → user taps Allow / Ask App Not to Track → call Tenjin.connect()
getAttributionInfo returns empty or missing fields. Why? #Attribution isn’t instant. After connect(), the server has to receive the request, match the click, and generate a result — roughly 3 seconds is standard industry latency. If you query too early, the result may still be calculating.
Implement retry logic on the client:
connect() — call it right after the privacy policy consent (Android) or ATT selection (iOS).getAttributionInfo call 2–3 seconds after connect().advertising_id coming through as null (resulting in a 202 error) on the native Android SDK, even though I’ve declared the AD_ID permission? #If you are applying ProGuard, keep in mind to add the rules to avoid obfuscating the required Google classes to access the GAID:
proguard
-keep class com.tenjin.** { *; }
-keep public class com.google.android.gms.ads.identifier.** { *; }
-keep public class com.google.android.gms.common.** { *; }
-keep public class com.google.android.gms.appset.** { *; }
-keep public class com.android.installreferrer.** { *; }