บทแนะนํา: เพิ่มประสิทธิภาพความถี่ของโฆษณา AdMob

ขั้นตอนที่ 3: จัดการค่าพารามิเตอร์ Remote Config ในโค้ดของแอป


บทนำ: เพิ่มประสิทธิภาพAdMob ความถี่ของโฆษณาโดยใช้ Firebase
ขั้นตอนที่ 1: ใช้ AdMob เพื่อสร้าง รูปแบบใหม่ของหน่วยโฆษณาสำหรับการทดสอบ
ขั้นตอนที่ 2: ตั้งค่า การทดสอบ A/B ในคอนโซล Firebase

ขั้นตอนที่ 3: จัดการค่าพารามิเตอร์ Remote Config ในโค้ดของแอป

ขั้นตอนที่ 4: เริ่ม การทดสอบ A/B และตรวจสอบผลการทดสอบใน Firebase คอนโซล
ขั้นตอนที่ 5: ตัดสินใจ ว่าจะเปิดตัวรูปแบบโฆษณาใหม่หรือไม่


เมื่อสิ้นสุดขั้นตอนสุดท้าย คุณได้สร้างพารามิเตอร์Remote Config (INTERSTITIAL_AD_KEY) ในขั้นตอนนี้ คุณจะเพิ่มตรรกะลงในโค้ดของแอป เพื่อกำหนดสิ่งที่แอปควรแสดงตามค่าของพารามิเตอร์ดังกล่าว

เพิ่ม SDK ที่จำเป็น

ก่อนใช้ Remote Config ในโค้ดแอปพลิเคชัน ให้เพิ่มทั้ง Remote Config SDK และ Firebase SDK สำหรับ Google Analytics ลงใน ไฟล์บิลด์ของโปรเจ็กต์

Swift

เพิ่มและติดตั้งพ็อดต่อไปนี้ในพ็อดไฟล์

pod 'Google-Mobile-Ads-SDK'
pod 'Firebase/Analytics'
pod 'Firebase/RemoteConfig'

Objective-C

เพิ่มและติดตั้งพ็อดต่อไปนี้ในพ็อดไฟล์

pod 'Google-Mobile-Ads-SDK'
pod 'Firebase/Analytics'
pod 'Firebase/RemoteConfig'

Android

เพิ่มทรัพยากร Dependency ของไลบรารีต่อไปนี้ลงในไฟล์ build.gradle

implementation 'com.google.android.gms:play-services-ads:25.2.0'
implementation 'com.google.firebase:firebase-analytics:23.2.0'
implementation 'com.google.firebase:firebase-config:23.1.0'

Unity

ดาวน์โหลดและติดตั้ง Firebase Unity SDK แล้วเพิ่มแพ็กเกจ Unity ต่อไปนี้ลงในโปรเจ็กต์

  • FirebaseAnalytics.unitypackage
  • FirebaseRemoteConfig.unitypackage

กำหนดค่าอินสแตนซ์Remote Config

หากต้องการใช้ค่าพารามิเตอร์ Remote Config ให้กำหนดค่าอินสแตนซ์ Remote Config เพื่อให้ตั้งค่าดึงข้อมูลค่าใหม่สำหรับอินสแตนซ์แอปไคลเอ็นต์

ในตัวอย่างนี้ ระบบจะกำหนดค่า Remote Config ให้ตรวจสอบค่าพารามิเตอร์ ใหม่ทุกๆ ชั่วโมง

Swift

remoteConfig = RemoteConfig.remoteConfig()
let settings = RemoteConfigSettings()
settings.minimumFetchInterval = 3600
remoteConfig.configSettings = settings

Objective-C

self.remoteConfig = [FIRRemoteConfig remoteConfig];
FIRRemoteConfigSettings *remoteConfigSettings = [[FIRRemoteConfigSettings alloc] init];
remoteConfigSettings.minimumFetchInterval = 3600;
self.remoteConfig.configSettings = remoteConfigSettings;

Java

mFirebaseRemoteConfig = FirebaseRemoteConfig.getInstance();
FirebaseRemoteConfigSettings configSettings = new FirebaseRemoteConfigSettings.Builder()
        .setMinimumFetchIntervalInSeconds(3600)
        .build();
mFirebaseRemoteConfig.setConfigSettingsAsync(configSettings);

Kotlin

remoteConfig = Firebase.remoteConfig
val configSettings = remoteConfigSettings {
    minimumFetchIntervalInSeconds = 3600
}
remoteConfig.setConfigSettingsAsync(configSettings)

Unity

var remoteConfig = FirebaseRemoteConfig.DefaultInstance;
var configSettings = new ConfigSettings {
  MinimumFetchInternalInMilliseconds =
        (ulong)(new TimeSpan(1, 0, 0).TotalMilliseconds)
};
remoteConfig.SetConfigSettingsAsync(configSettings)
        .ContinueWithOnMainThread(task => {
          Debug.Log("Config settings confirmed");
}

ดึงข้อมูลและเปิดใช้งาน Remote Config

ดึงข้อมูลและเปิดใช้งานพารามิเตอร์ Remote Config เพื่อให้เริ่มใช้ ค่าพารามิเตอร์ใหม่ได้

ขอให้เรียกใช้โดยเร็วที่สุดในระยะโหลดข้อมูลของแอป เพราะการเรียกใช้นี้ไม่พร้อมกัน (อะซิงโครนัส) และต้องดึงค่าRemote Config ก่อนเพื่อให้แอปรู้ว่าจะแสดงโฆษณาใด

Swift

remoteConfig.fetch() { (status, error) -> Void in
  if status == .success {
    print("Config fetched!")
    self.remoteConfig.activate() { (changed, error) in
      // ...
    }
  } else {
    print("Config not fetched")
    print("Error: \(error?.localizedDescription ?? "No error available.")")
  }
  self.loadAdUnit()
}

Objective-C

[self.remoteConfig fetchWithCompletionHandler:^(FIRRemoteConfigFetchStatus status, NSError *error) {
    if (status == FIRRemoteConfigFetchStatusSuccess) {
        NSLog(@"Config fetched!");
      [self.remoteConfig activateWithCompletion:^(BOOL changed, NSError * _Nullable error) {
        // ...
      }];
    } else {
        NSLog(@"Config not fetched");
        NSLog(@"Error %@", error.localizedDescription);
    }
    [self loadAdUnit];
}];

Java

mFirebaseRemoteConfig.fetchAndActivate()
        .addOnCompleteListener(this, new OnCompleteListener<Boolean>() {
            @Override
            public void onComplete(@NonNull Task<Boolean> task) {
                if (task.isSuccessful()) {
                    boolean updated = task.getResult();
                    Log.d(TAG, "Config params updated: " + updated);
                } else {
                    Log.d(TAG, "Config params failed to update");
                }
                loadAdUnit();
            }
        });

Kotlin

remoteConfig.fetchAndActivate()
        .addOnCompleteListener(this) { task ->
            if (task.isSuccessful) {
                val updated = task.result
                Log.d(TAG, "Config params updated: $updated")
            } else {
                Log.d(TAG, "Config params failed to update")
            }
            loadAdUnit()
        }

Unity

remoteConfig.FetchAndActivateAsync().ContinueWithOnMainThread(task => {
  if (task.IsFaulted) {
    Debug.LogWarning("Config params failed to update");
  } else {
    Debug.Log("Config params updated: " + task.Result);
  }
  LoadAdUnit();
});

ตอนนี้แอปพร้อมที่จะจัดการพารามิเตอร์ Remote Config ที่คุณสร้างขึ้น ระหว่างการตั้งค่าชุดทดสอบ A/B ก่อนหน้านี้ในบทแนะนำนี้แล้ว

ใช้ค่าพารามิเตอร์ Remote Config

ใช้ค่า Remote Config ที่ดึงข้อมูลไว้ล่วงหน้าในฟังก์ชัน loadAdUnit() เพื่อกำหนดรูปแบบความถี่ของโฆษณาที่ควรแสดงสำหรับอินสแตนซ์แอปนี้

Swift

private func loadAdUnit() {
  let adUnitId = remoteConfig["INTERSTITIAL_AD_KEY"].stringValue;
  let request = GADRequest()
  GADInterstitialAd.load(withAdUnitID: adUnitId,
                               request: request,
                     completionHandler: { [self] ad, error in
                       if let error = error {
                         print("Failed to load: \(error.localizedDescription)")
                         return
                       }
                       interstitial = ad
                       // Register for callbacks.
                     }
  )
}

// Register for callbacks.

Objective-C

- (void)loadAdUnit {
    NSString *adUnitId =
      self.remoteConfig[@"INTERSTITIAL_AD_KEY"].stringValue;

  GADRequest *request = [GADRequest request];
  [GADInterstitialAd loadAdWithAdUnitId:adUnitId
                         request:request
                         completionHandler:^(GADInterstitialAd *ad,
                             NSError *error) {
    if (error) {
      NSLog(@"Failed to load interstitial ad with error: %@",
        [error localizedDescription]);
      return;
    }

    self.interstitial = ad;
  }];
}

Java

private void loadAdUnit() {
    String adUnitId =
      mFirebaseRemoteConfig.getString("INTERSTITIAL_AD_KEY");

    // Load Interstitial Ad (assume adUnitId not null)
    AdRequest adRequest = new AdRequest.Builder().build();

    InterstitialAd.load(this, adUnitId, adRequest, new
        InterstitialAdLoadCallback() {
          @Override
          public void onAdLoaded(@NonNull InterstitialAd intertitialAd) {
            mInterstitialAd = interstitialAd;
          }

          @Override
          public void onAdFailedToLoad(@NonNull LoadAdError loadAdError) {
            mInterstitialAd = null;
          }
    });
}

Kotlin

private fun loadAdUnit() {
  String adUnitId = remoteConfig.getString("INTERSTITIAL_AD_KEY")
  var adRequest = AdRequestBuilder.Builder().build()

  AdRequestBuilder.load(this, adUnitId, adRequest, object :
    InterstitialAdLoadCallback() {
      override fun onAdFailedToLoad(adError: LoadAdError) {
        mInterstitialAd = null
      }

      override fun onAdLoaded(interstitialAd: InterstitialAd) {
        mInterstitialAd = interstitialAd
      }
    })
}

Unity

void LoadAdUnit() {

  // Note that you may want to encode and parse two sets of ad unit IDs for
  // Android / iOS in the Unity implementation.
  String adUnitId = remoteConfig.GetValue("INTERSTITIAL_AD_KEY").StringValue;
  this.interstitial = new InterstitialAd(adUnitId);
}

เพิ่มการตรวจสอบอื่นๆ สำหรับค่าพารามิเตอร์

นอกจากนี้ คุณยังต้องตรวจสอบค่าพารามิเตอร์Remote Configนี้ในส่วนอื่นๆ ของโค้ดของแอปพลิเคชันเพื่อกำหนดประสบการณ์การใช้งานโฆษณาที่จะโหลด เช่น คุณสามารถตัดสินใจว่าจะโหลดโฆษณาอีกครั้งหลังจากที่ผู้ใช้ดูโฆษณาปัจจุบันจบแล้วหรือไม่

คุณควรเรียกใช้ฟังก์ชันดึงข้อมูลและเปิดใช้งานก่อนเพื่อรับการเปลี่ยนแปลงค่าพารามิเตอร์ เช่น หากคุณตัดสินใจที่จะสิ้นสุดหรือสร้างการทดสอบใหม่

จากนั้น คุณสามารถตรวจสอบค่าพารามิเตอร์ได้ทุกเมื่อโดยใช้การเรียกใช้ต่อไปนี้

Swift

remoteConfig["INTERSTITIAL_AD_KEY"].stringValue

Objective-C

self.remoteConfig[@"INTERSTITIAL_AD_KEY"].stringValue;

Java

mFirebaseRemoteConfig.getString(INTERSTITIAL_AD_KEY)

Kotlin

remoteConfig.getString(INTERSTITIAL_AD_KEY)

Unity

remoteConfig.GetValue("INTERSTITIAL_AD_KEY").StringValue

การเรียกใช้เหล่านี้จะแสดงค่าเดียวกันสำหรับอินสแตนซ์แอปเสมอ โดยขึ้นอยู่กับ ว่าอินสแตนซ์นั้นอยู่ในกลุ่มควบคุมหรือกลุ่มรูปแบบโฆษณาใหม่กลุ่มใดกลุ่มหนึ่ง เว้นแต่จะมีการเปลี่ยนแปลงใน Firebase ซึ่งดึงข้อมูลและ เปิดใช้งานในการเรียกใช้ก่อนหน้านี้




ขั้นตอนที่ 2: ตั้งค่าการทดสอบ A/B ในFirebaseคอนโซล ขั้นตอนที่ 4: เริ่มการทดสอบ A/B และตรวจสอบผลการทดสอบ