お世話になっております。Googleから、上記タイトルのメールを受信いたしました。
新しいスイッチの実装方法がわかりません。
dependencies {
...
implementation 'com.android.installreferrer:installreferrer:1.1'
}
こちらのdependenciesの設定につきましては、対応が出来るのですが、
次のコード↓
InstallReferrerClient referrerClient;
referrerClient = InstallReferrerClient.newBuilder(this).build();
referrerClient.startConnection(new InstallReferrerStateListener() {
@Override
public void onInstallReferrerSetupFinished(int responseCode) {
switch (responseCode) {
case InstallReferrerResponse.OK:
// Connection established.
break;
case InstallReferrerResponse.FEATURE_NOT_SUPPORTED:
// API not available on the current Play Store app.
break;
case InstallReferrerResponse.SERVICE_UNAVAILABLE:
// Connection couldn't be established.
break;
}
}
@Override public void onInstallReferrerServiceDisconnected() { // Try to restart the connection on the next request to // Google Play by calling the startConnection() method. }
});
こちらのコードを、アプリのどこに実装すればよいのか、解りません。
そして、connectionした後、こちらのコード↓
ReferrerDetails response = referrerClient.getInstallReferrer();
String referrerUrl = response.getInstallReferrer();
long referrerClickTime = response.getReferrerClickTimestampSeconds();
long appInstallTime = response.getInstallBeginTimestampSeconds();
boolean instantExperienceLaunched = response.getGooglePlayInstantParam();
Caution: The install referrer
こちらのコードも、アプリのどこに、実装すれば良いのかも解りません。
もし、お解りでいらっしゃいましたら、ご教授頂けますよう、お願い申し上げます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/13 02:22