तीसरा चरण: अपने ऐप्लिकेशन के कोड में Remote Config पैरामीटर की वैल्यू मैनेज करना
बुनियादी जानकारी: AdMob को ऑप्टिमाइज़ करें Firebase का इस्तेमाल करके विज्ञापन की फ़्रीक्वेंसी |
पहला चरण: AdMob का इस्तेमाल करके इमेज बनाएं टेस्टिंग के लिए विज्ञापन यूनिट के नए वैरिएंट |
दूसरा चरण: सेट अप करें Firebase कंसोल में A/B टेस्ट |
अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है चरण 3: अपने ऐप्लिकेशन के कोड में Remote Config पैरामीटर वैल्यू मैनेज करना |
चौथा चरण: शुरू करें Firebase कंसोल में जाकर, A/B टेस्ट किया जा सकता है और जांच के नतीजों की समीक्षा की जा सकती है |
पांचवां चरण: तय करें नया विज्ञापन फ़ॉर्मैट रोल आउट करना है या नहीं |
आखिरी चरण के आखिर में, आपने एक Remote Config पैरामीटर बनाया था
(INTERSTITIAL_AD_KEY
). इस चरण में, आपको अपने ऐप्लिकेशन के कोड में लॉजिक जोड़ना होगा
पैरामीटर की वैल्यू के आधार पर आपके ऐप्लिकेशन को क्या दिखाना चाहिए.
ज़रूरी SDK टूल जोड़ना
अपने ऐप्लिकेशन कोड में Remote Config का इस्तेमाल करने से पहले, दोनों को जोड़ें Google Analytics के लिए Remote Config SDK टूल और Firebase SDK टूल आपके प्रोजेक्ट की बिल्ड फ़ाइलें भी मौजूद होती हैं.
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
अपनी build.gradle
फ़ाइल में, ये लाइब्रेरी डिपेंडेंसी जोड़ें:
implementation 'com.google.android.gms:play-services-ads:23.3.0'
implementation 'com.google.firebase:firebase-analytics:22.1.0'
implementation 'com.google.firebase:firebase-config:22.0.0'
Unity
Firebase Unity SDK टूल को डाउनलोड और इंस्टॉल करें. इसके बाद, यहां दिया गया Unity SDK टूल जोड़ें पैकेज:
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+KTX
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+KTX
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 पैरामीटर वैल्यू का इस्तेमाल करें
loadAdUnit()
फ़ंक्शन में पहले से फ़ेच की गई Remote Config वैल्यू का इस्तेमाल करें
तय करें कि इस ऐप्लिकेशन इंस्टेंस के लिए, विज्ञापन की फ़्रीक्वेंसी का कौनसा वैरिएंट दिखाना चाहिए.
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+KTX
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+KTX
remoteConfig.getString(INTERSTITIAL_AD_KEY)
Unity
remoteConfig.GetValue("INTERSTITIAL_AD_KEY").StringValue
ये कॉल, ऐप्लिकेशन इंस्टेंस के लिए हमेशा एक ही वैल्यू दिखाएंगे. हालांकि, ऐसा इन वजहों से होगा उसे कंट्रोल ग्रुप में रखा गया था या विज्ञापन के किसी नए वैरिएंट ग्रुप में, जब तक कि Firebase कंसोल में कोई बदलाव नहीं किया जाता, जिसे फ़ेच किया गया था और को पिछले कॉल में सक्रिय किया गया था.
Firebase कंसोल में A/B टेस्ट सेट अप करें दूसरा चरण: चौथा चरण: A/B टेस्ट शुरू करें और जांच के नतीजों की समीक्षा करें