-
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.
Merge branch 'main' into smartling-translation-completed-trg1qiosdmbk…
…-from-main
- Loading branch information
Showing
6 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
title: TradePlus SDK 연동 | ||
description: "TradPlus 연동을 사용하여 TradPlus 정보를 Adjust 서버로 전달할 수 있습니다. " | ||
title: TradPlus SDK 연동 | ||
description: "TradePlus 연동을 사용하여 TradePlus 정보를 Adjust 서버로 전달할 수 있습니다. " | ||
slug: ko/sdk/android/integrations/tradplus | ||
versions: | ||
- label: v5 | ||
|
@@ -14,29 +14,29 @@ redirects: | |
|
||
<MinorVersion added="v4.38.1"> | ||
|
||
TradPlus SDK의 광고 매출을 측정하고 싶다면 SDK간 연동을 사용하여 Adjust 서버로 광고 매출 정보를 전달할 수 있습니다. | ||
TradePlus SDK의 광고 매출을 측정하고 싶다면, SDK간 연동을 사용하여 Adjust 서버로 광고 매출 정보를 전달할 수 있습니다. | ||
|
||
</MinorVersion> | ||
<Callout type="note"> | ||
|
||
Admost의 광고 매출 측정에 관한 문의는 담당 TAM\(테크니컬 어카운트 매니저\)이나 [[email protected]](mailto:[email protected])으로 연락 주시기 바랍니다. | ||
TradePlus의 광고 매출 측정에 관한 문의는 담당 TAM\(테크니컬 어카운트 매니저\)이나 [[email protected]](mailto:[email protected])으로 연락 주시기 바랍니다. | ||
|
||
</Callout> | ||
|
||
## 시작에 앞서 {#before-you-begin} | ||
|
||
앱에 Adjust SDK를 연동하려면 [연동 가이드](/ko/sdk/android)를 참조하시기 바랍니다. | ||
|
||
## 예시 {#example} | ||
## 예 {#example} | ||
|
||
Adjust와의 광고 매출 정보를 기록하려면 `TradPlusSdk.setGlobalImpressionListener` 함수 내에서 `AdjustAdRevenue` 인스턴스를 생성하시기 바랍니다. 자세한 내용은 [광고 매출 정보 전송 가이드](/ko/sdk/android/features/ad-revenue) 를 참조하시기 바랍니다. | ||
Adjust에서 광고 수익 정보를 기록하려면, `TradPlusSdk.setGlobalImpressionListener` 함수 안에 `AdjustAdRevenue` 인스턴스를 생성하세요. 자세한 내용은 [광고 수익 정보 전송 가이드](/ko/sdk/android/features/ad-revenue)를 참고하세요. | ||
|
||
```java | ||
TradPlusSdk.setGlobalImpressionListener(new GlobalImpressionManager.GlobalImpressionListener() { | ||
|
||
@Override | ||
public void onImpressionSuccess(TPAdInfo tpAdInfo) { | ||
AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("TradPlus"); | ||
AdjustAdRevenue adjustAdRevenue = new AdjustAdRevenue("tradplus_sdk"); | ||
double ecpm = Double.valueOf(tpAdInfo.ecpm) / 1000; | ||
adjustAdRevenue.setRevenue(ecpm, "USD"); | ||
adjustAdRevenue.setAdRevenueNetwork(tpAdInfo.adSourceName); | ||
|
Oops, something went wrong.