Skip to content

Commit

Permalink
File src/content/docs/en/sdk/unity/v5/plugins/meta-referrer-plugin.md…
Browse files Browse the repository at this point in the history
…oc was updated on ja-JP locale
  • Loading branch information
smartling-github-connector[bot] authored Nov 6, 2024
1 parent fde4ce2 commit 5a94b0f
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/content/docs/ja/sdk/unity/v5/plugins/meta-referrer-plugin.mdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
title: "Meta インストールリファラー"
description: "Metaインストールリファラープラグインを使用して、 Metaインストールリファラー情報をAdjustに送信します。"
slug: "en/sdk/unity/plugins/meta-referrer-plugin"
versions:
-
label: "v5"
value: "v5"
default: true
-
label: "v4"
value: "v4"
redirects:
v4: "/en/sdk/unity/v4#meta-referrer-integration"
---
\{% callout type="note" %\}
[Metaの要件](https://developers.facebook.com/docs/app-ads/meta-install-referrer#step-1--add-the-meta-apps)により、Adjust SDKは`<queries id="sl-md0000000">`エレメントをバンドルしています。これらを`AndroidManifest.xml`に追加する必要はありません。
\{% /callout %\}

Metaインストールリファラープラグインは、Adjust SDKがデバイス上のMetaインストールリファラー値を読み取ることを可能にします。その後、SDKはこの情報をインストールペイロードの一部として、Adjustサーバーに送信します。

プラグインをアプリに追加する方法:

1. `Dependencies.xml`ファイルに以下のdependencyを追加します:

```xml
<androidpackage spec="com.adjust.sdk:adjust-android-meta-referrer:{% $versions.android.v5 %}" id="sl-md0000000"></androidPackage>
```

または、Android Studioで`build.gradle`ファイルに以下のdependencyを追加することもできます。

```groovy
dependencies {
implementation 'com.adjust.sdk:adjust-android-meta-referrer:{% $versions.android.v5 %}'
}
```

2. [App Dashboard](https://developers.facebook.com/apps)でMetaアプリIDを検索します。詳しくはMetaの[アプリダッシュボードのドキュメント](https://developers.facebook.com/docs/development/create-an-app/app-dashboard)をご覧ください。

3. `AdjustConfig`インスタンスの`FbAppId`プロパティにアプリIDを割り当てます。

```cs
AdjustConfig config = new AdjustConfig("{YourAppToken}", AdjustEnvironment.Sandbox);
//...
config.FbAppId = "{FB_APP_ID_STRING}";
//...
Adjust.InitSdk(config);
```

0 comments on commit 5a94b0f

Please sign in to comment.