Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

applovin-ads-integrationapplovin 广告集成

Agent Skill

applovin-ads-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

465

周安装

19

GitHub Stars

19

下载量

149
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:applovin-ads-integration(applovin 广告集成)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/applovin-ads-integration
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill applovin-ads-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill applovin-ads-integration

简介

用于查找、检索和筛选相关信息。applovin-ads-integration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词快速定位候选结果。
  • 通过 GitHub 安装,需确认权限和维护状态。
  • 可能触发联网或文件读写,建议提前评估风险。
  • 适用于 Codex、Claude、Cursor 和 Gemini CLI。

SKILL.md

AppLovin Ads Integration

Overview

AppLovin is a leading mobile advertising platform for commerce apps — combining the MAX mediation SDK (monetizing your app with ads) and AppLovin Ads (acquiring users and running retargeting campaigns). This skill applies to merchants who have a native iOS or Android shopping app and want to run user acquisition campaigns or monetize with in-app ads. It is not relevant for web-only stores.

When to Use This Skill

  • When running user acquisition campaigns for a native mobile commerce app
  • When monetizing a mobile commerce app with in-app advertising using MAX mediation
  • When setting up purchase event postbacks for ROAS-optimized bidding
  • When migrating from MoPub/ironSource to AppLovin MAX mediation
  • When building a retargeting campaign for mobile app users who added to cart but did not purchase
  • When implementing SKAdNetwork attribution for iOS 14+ compliance

Core Instructions

Step 1: Determine what you need

AppLovin serves two distinct use cases — choose the right one:

GoalWhat to UseDifficulty
Acquire new app users and retarget existing onesAppLovin Ads (demand-side platform)Medium — configure via dashboard at manage.applovin.com
Monetize your app by showing ads to usersAppLovin MAX SDKHigh — requires SDK integration in your mobile app
Track purchase events for ROAS optimizationSDK + MMP (Adjust, AppsFlyer, or Singular)High — requires server-side postback setup

Prerequisite: You need an AppLovin account at applovin.com and a mobile app that exists on the App Store or Google Play.

Step 2: Install the AppLovin MAX SDK in your mobile app

iOS (CocoaPods):

Add to your Podfile:

pod 'AppLovinSDK'
pod 'AppLovinMediationGoogleAdMobAdapter'
pod 'AppLovinMediationMetaAudienceNetworkAdapter'

Initialize in AppDelegate.swift:

import AppLovinSDK

func application(_ app: UIApplication, didFinishLaunchingWithOptions opts: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  ALSdk.shared().mediationProvider = "max"
  ALSdk.shared().userIdentifier = currentUser?.id ?? ""
  ALSdk.shared().initializeSdk { sdkConfig in
    // SDK ready — load your first ad
  }
  return true
}

Android (Gradle):

In app/build.gradle:

dependencies {
    implementation 'com.applovin:applovin-sdk:+'
    implementation 'com.applovin.mediation:google-adapter:+'
    implementation 'com.applovin.mediation:facebook-adapter:+'
}

In Application.onCreate():

AppLovinSdk.getInstance(this).apply {
    mediationProvider = "max"
    userIdentifier = currentUser?.id ?: ""
    initializeSdk { /* SDK ready */ }
}

Step 3: Set up a Mobile Measurement Partner (MMP) — do this before running campaigns

Do not run AppLovin campaigns without an MMP. Direct postbacks miss cross-device attribution and SKAdNetwork decoding. Use one of:

  • Adjust (adjust.com) — most widely used, strong AppLovin integration
  • AppsFlyer (appsflyer.com) — industry standard, good for multi-network attribution
  • Singular (singular.net) — good for privacy-focused attribution

Each MMP provides an AppLovin integration module that automatically sends purchase postbacks. In your MMP dashboard:

  1. Navigate to Partner Configuration → AppLovin
  2. Enter your AppLovin SDK key
  3. Enable "In-App Purchase" postbacks
  4. Configure conversion value mapping for SKAdNetwork

Step 4: Track purchase events in your app

Fire purchase events immediately after a confirmed purchase — both client-side and server-side:

Client-side (iOS):

func trackPurchase(orderId: String, revenue: Double, currency: String) {
  ALEventService.shared().trackEvent(ALEventTypePurchasedProduct, withParameters: [
    ALEventParameterRevenueAmount: NSNumber(value: revenue),
    ALEventParameterRevenueCurrency: currency,
    ALEventParameterProductIdentifier: orderId,
  ])
}

// Also track add-to-cart for retargeting signal
func trackAddToCart(productId: String, price: Double) {
  ALEventService.shared().trackEvent(ALEventTypeAddedItemToCart, withParameters: [
    ALEventParameterProductIdentifier: productId,
    ALEventParameterRevenueAmount: NSNumber(value: price),
  ])
}

Server-side postback (for signal reliability):

async function sendApplovinPurchasePostback(params: {
  userId: string;
  orderId: string;
  revenue: number;
  currency: string;
  applovinId?: string;
}) {
  const url = new URL('https://d.applovin.com/postback/v1/purchase');
  url.searchParams.set('event_token', process.env.APPLOVIN_POSTBACK_TOKEN!);
  url.searchParams.set('event_name', 'purchase');
  url.searchParams.set('user_id', params.userId);
  url.searchParams.set('transaction_id', params.orderId);
  url.searchParams.set('revenue', params.revenue.toFixed(2));
  url.searchParams.set('currency', params.currency);
  if (params.applovinId) url.searchParams.set('device_id', params.applovinId);

  await fetch(url.toString());
}

Step 5: Create user acquisition campaigns

In AppLovin's advertising dashboard at manage.applovin.com:

  1. Go to Campaigns → Create Campaign
  2. Configure:

- Campaign Type: App Install (iOS or Android) - Optimization Goal: Purchase (ROAS optimization) - Bid Strategy: Target ROAS — start at 200%, increase after 50+ purchases/day - Daily Budget: minimum $200/day for ROAS campaigns (algorithm needs data volume) - Targeting: Tier-1 countries (US, CA, GB, AU) for highest ROAS; age 25–54

  1. Upload creative assets: 15s and 30s video ads, playable ads, and static banners
  2. Under Audience Signals, upload a lookalike audience based on your top purchasers (export from your MMP)

Step 6: Configure the MAX mediation waterfall (for app monetization only)

If you are monetizing your app with in-app ads (not just running user acquisition), configure your waterfall in the MAX dashboard:

  1. Go to MAX → Ad Units → Create Ad Unit
  2. Set up in-app bidding networks first (simultaneous auction, highest yield):

- AppLovin Exchange - Meta Audience Network - Google AdMob

  1. Add traditional waterfall fallbacks with floor prices:

- $3.00 CPM → Vungle - $2.00 CPM → Unity Ads - $1.00 CPM → ironSource

Load and show interstitial ads in your app:

class CartViewController: UIViewController {
  var interstitialAd: MAInterstitialAd?

  override func viewDidLoad() {
    super.viewDidLoad()
    interstitialAd = MAInterstitialAd(adUnitIdentifier: "YOUR_AD_UNIT_ID")
    interstitialAd?.delegate = self
    interstitialAd?.load()
  }
}

extension CartViewController: MAAdDelegate {
  func didLoad(_ ad: MAAd) { /* ready to show */ }
  func didHide(_ ad: MAAd) {
    interstitialAd?.load() // preload immediately after hide
  }
}

Step 7: Configure SKAdNetwork for iOS 14+ attribution

Map your purchase value ranges to SKAdNetwork conversion values (0–63) in both AppLovin's dashboard and your app code:

func updateSKANConversionValue(orderValue: Double) {
  let conversionValue: Int
  switch orderValue {
  case 0..<25:    conversionValue = 10
  case 25..<50:   conversionValue = 20
  case 50..<100:  conversionValue = 30
  case 100..<200: conversionValue = 40
  default:         conversionValue = 63
  }

  if #available(iOS 16.1, *) {
    SKAdNetwork.updatePostbackConversionValue(conversionValue, coarseValue: .high, lockWindow: false) { _ in }
  } else {
    SKAdNetwork.updateConversionValue(conversionValue)
  }
}

Configure the identical schema in AppLovin's SKAN configuration panel (MAX → SKAN Configuration) so the platform can decode postbacks.

Best Practices

  • Always use an MMP — direct postbacks miss cross-device attribution and SKAdNetwork decoding; MMPs handle this automatically
  • Set revenue postbacks server-side — client-side events can be spoofed; server postbacks give AppLovin reliable ROAS signal
  • Preload ads before they are needed — call load() immediately after didHide to have an ad ready for the next impression
  • Use in-app bidding for all placements — simultaneous auction outperforms sequential waterfall by 15–30% eCPM
  • Refresh creatives every two weeks — AppLovin's algorithm tires of creatives quickly; add new video and playable formats
  • Cap retargeting frequency — limit to 3 impressions per user per day

Common Pitfalls

ProblemSolution
Purchase postbacks not registeringVerify postback token is correct; ensure revenue uses decimal format (not integer)
SDK fails to initialize on iOSAdd NSUserTrackingUsageDescription to Info.plist; implement ATT prompt before SDK init
ROAS campaign underspendingLower your tROAS target; ensure 50+ purchase events/day for the algorithm to optimize
SKAN conversion values showing all zerosConfirm updateConversionValue is called after final purchase confirmation, not just payment intent
Rewarded ad not loading after first showCall load() in didHide callback, not didDisplay
Android GAID missing in postbacksRequest AD_ID permission on Android 13+; user may have limited ad tracking in device settings

Related Skills

  • @tiktok-ads-integration
  • @meta-ads-integration
  • @marketing-attribution-dashboard
  • @push-notifications
  • @customer-retention-engine

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.78%
按下载量换算53

Claude

28.74%
按下载量换算43

Cursor

18.68%
按下载量换算28

Gemini CLI

8.48%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills