-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File src/content/docs/en/sdk/unity/v5/plugins/meta-referrer-plugin.md…
…oc was updated on ja-JP locale
- Loading branch information
1 parent
fde4ce2
commit 5a94b0f
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
src/content/docs/ja/sdk/unity/v5/plugins/meta-referrer-plugin.mdoc
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,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); | ||
``` | ||
|