Giờ đây, khi đã triển khai một đơn vị quảng cáo mới trong ứng dụng, bạn cần thiết lập thử nghiệm A/B để hiểu được hiệu suất của đơn vị quảng cáo này. Bạn sẽ xác định người dùng cần nhắm đến trong thử nghiệm cũng như mục tiêu thử nghiệm. Bạn cũng cần xác định các biến thể thử nghiệm (các đơn vị quảng cáo khác nhau trong ứng dụng) và thiết lập tham số Remote Config để kiểm soát việc hiển thị các biến thể trong ứng dụng.
Firebase A/B Testing sử dụng các sản phẩm sau để kiểm thử và phân tích tác động của việc thêm đơn vị quảng cáo vào ứng dụng:
Firebase A/B Testing (bước này) – xác định mục tiêu và các tham số có thể định cấu hình cho kiểm thử
Firebase Remote Config (bước tiếp theo) – thêm logic vào mã để xử lý cấu hình của các tham số
Google Analytics (chạy ở chế độ nền) – đo lường tác động của các cấu hình
Tạo một thử nghiệm A/B mới
Để bắt đầu một thử nghiệm có kiểm soát về việc sử dụng một định dạng quảng cáo mới, hãy bắt đầu bằng cách chuyển đến phần A/B Testing của bảng điều khiển Firebase. Nhấp vào Tạo thử nghiệm, rồi chọn Remote Config.
Thiết lập thông tin cơ bản
Trong mục Thông tin cơ bản, hãy xác định tên thử nghiệm và cung cấp nội dung mô tả về thử nghiệm.
Giao diện người dùng của bảng điều khiển Firebase cho biết cách thiết lập các thông tin cơ bản về thử nghiệm A/B"
class="screenshot">
Thiết lập tiêu chí nhắm mục tiêu
Trong mục Nhắm mục tiêu, hãy chọn ứng dụng iOS hoặc Android mà thử nghiệm sẽ nhắm đến.
Đặt tỷ lệ phần trăm người dùng sẽ thấy thử nghiệm này. Trong hướng dẫn này, đơn vị quảng cáo mới sẽ được thử nghiệm với 10% số người dùng. Xin lưu ý rằng điều này không có nghĩa là 10% tất cả người dùng sẽ thấy định dạng quảng cáo mới; mà có nghĩa là 10% người dùng sẽ tham gia thử nghiệm để xem hoặc không xem định dạng quảng cáo mới.
Giữ nguyên tất cả các chế độ cài đặt khác theo mặc định.
Giao diện người dùng của bảng điều khiển Firebase cho biết cách thiết lập tiêu chí nhắm mục tiêu của thử nghiệm A/B"
class="screenshot">
Thiết lập mục tiêu
Firebase A/B Testing theo dõi một chỉ số chính để xác định biến thể hiệu quả nhất, nhưng bạn vẫn có thể thêm các chỉ số phụ để hiểu rõ mức tác động của các cấu hình khác nhau đối với các yếu tố quan trọng khác của ứng dụng.
Đối với hướng dẫn này, mục tiêu chính là tối ưu hoá Doanh thu AdMob ước tính. Vì vậy, hãy chọn mục tiêu này trong trình đơn thả xuống.
(Không bắt buộc) Nếu bạn muốn A/B Testing theo dõi các chỉ số khác, chẳng hạn như Tổng doanh thu ước tính hoặc các tỷ lệ giữ chân khác nhau, hãy chọn các chỉ số đó bằng cách nhấp vào Thêm chỉ số.
Giao diện người dùng của bảng điều khiển Firebase cho biết cách thiết lập mục tiêu của thử nghiệm A/B"
class="screenshot">
Thiết lập các biến thể
Bước cuối cùng để định cấu hình thử nghiệm A/B là xác định tham số Remote Config kiểm soát việc có hiển thị đơn vị quảng cáo mới cho người dùng hay không.
Trong mục Biến thể, hãy tạo một thông số mới có tên là SHOW_NEW_AD_KEY bằng cách nhập thông số đó vào trường Thông số của thẻ Đường cơ sở.
Hoàn tất việc thiết lập mục Biến thể bằng cách sử dụng các chế độ cài đặt sau cho tham số SHOW_NEW_AD_KEY:
Biến thể Cơ sở: Giá trị được đặt thành false (có nghĩa là: không hiển thị định dạng quảng cáo mới)
Biến thể Biến thể A: Giá trị được đặt thành true (có nghĩa là: hiển thị
định dạng quảng cáo mới)
Trong hướng dẫn này, biến thể Cơ sởsẽ không hiển thị định dạng quảng cáo mới cho người dùng, nhưng biến thể Biến thể Asẽ hiển thị định dạng quảng cáo mới cho một số ít người dùng. Điều này do giá trị boolean của tham số kiểm soát. Các giá trị này được đặt tại đây trong Firebase A/B Testing, nhưng thực tế là Firebase Remote Config sẽ gửi các giá trị này đến mã của ứng dụng để xử lý. Bạn sẽ thiết lập Remote Config trong bước tiếp theo.
Giao diện người dùng của bảng điều khiển Firebase cho biết cách thiết lập các biến thể của thử nghiệm A/B"
class="screenshot">
Nhấp vào Xem xét để đảm bảo thử nghiệm của bạn đã được thiết lập như mong đợi. Tuy nhiên, trước khi có thể bắt đầu thử nghiệm, bạn cần xác định cách đoạn mã trong ứng dụng của mình sẽ điều chỉnh theo giá trị tham số true hoặc false nhận được từ Firebase.
Tiếp tục thực hiện bước tiếp theo để triển khai cách Remote Config xử lý tham số SHOW_NEW_AD_KEY.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2025-07-24 UTC."],[],[],null,["Step 2: Set up an A/B test in the Firebase console\n\n\u003cbr /\u003e\n\n|----------------------------------------------------------------------------------------------------------------------------------|\n| Introduction: [Test new AdMob ad format adoption using Firebase](/docs/tutorials/test-ad-format-adoption) |\n| Step 1: [Use AdMob to create a new ad unit variant for testing](/docs/tutorials/test-ad-format-adoption/step-1) |\n| **Step 2: Set up an A/B test in the Firebase console** \u003cbr /\u003e |\n| Step 3: [Handle Remote Config parameter values in your app's code](/docs/tutorials/test-ad-format-adoption/step-3) |\n| Step 4: [Start the A/B test and review the test results in the Firebase console](/docs/tutorials/test-ad-format-adoption/step-4) |\n| Step 5: [Decide whether to roll out the new ad format](/docs/tutorials/test-ad-format-adoption/step-5) |\n\n\u003cbr /\u003e\n\nNow that you have a new ad unit implemented in your app, you need to set up an\nA/B test that will help you understand how this ad unit performs. You'll define\nwhich users to target in the test as well as your testing goals. You'll also\nneed to define your test variants (the different ad units in your app) and set\nup the Remote Config parameter which will control the display of the\nvariants in your app.\n\nFirebase A/B Testing utilizes the following products to test and analyze the\neffects of adding an ad unit to your app:\n\n- Firebase A/B Testing (this step) --- define goals and configurable parameters for your test\n- Firebase Remote Config (next step) --- add logic to your code to handle the configuration of the parameters\n- Google Analytics (runs behind the scenes) --- measures the impact of the configurations\n\n**Initiate a new A/B test**\n\nTo initiate a controlled test over adopting a new ad format, start by navigating\nto the *A/B Testing* section of the Firebase console. Click **Create\nexperiment** , then select **Remote Config**.\n\n**Set up the basics**\n\nIn the *Basics* section, define the experiment name and provide the\nexperiment description.\nFirebase console UI showing how to set up the basics of A/B test\" class=\"screenshot\"\\\u003e\n\n**Set up targeting**\n\n1. In the *Targeting* section, select the iOS or Android app that the\n experiment will target.\n\n2. Set the percentage of users who will be exposed to the experiment. For this\n tutorial, the new ad unit will be tested with 10% of your users. Note that\n this doesn't mean that 10% of all your users will see the new ad format;\n this means that 10% of your users will be part of the experiment to see or\n not see the new ad format.\n\n Leave all other settings as their defaults.\n\nFirebase console UI showing how to set up the targeting of A/B test\" class=\"screenshot\"\\\u003e **Note:** Due to the different user behavior patterns observed from iOS and Android users, each A/B test can only target either the iOS or Android version of your app.\n|\n| To run the same test for both versions of your app, set up an experiment\n| for one version of your app, then duplicate the test settings in a second\n| experiment. In this second experiment, select the other version of your app\n| in the *Targeting* section.\n\n**Set up your goals**\n\nFirebase A/B Testing tracks a primary metric to determine the winning\nvariant, but it also allows you to add secondary metrics to understand the\nimpacts of different configurations on other important factors for your app.\n\n1. For this tutorial, *Estimated AdMob revenue* optimization is the primary\n goal, so select it from the dropdown menu.\n\n2. *(Optional)* If you want A/B Testing to track additional metrics, like\n *Estimated total revenue* or different retention rates, select those by\n clicking **Add metric**.\n\nFirebase console UI showing how to set up the goals of A/B test\" class=\"screenshot\"\\\u003e\n\n**Set up the variants**\n\nThe last step of configuring an A/B test is defining a Remote Config\nparameter that controls whether the new ad unit will be shown to users.\n\n1. In the *Variants* section, create a new parameter named\n `SHOW_NEW_AD_KEY` by typing it in the *Parameter* field of the\n *Baseline* card.\n\n2. Finish setting up the *Variants* section using the following settings\n for the `SHOW_NEW_AD_KEY` parameter:\n\n - ***Baseline*** variant: *Value* set to `false` (which means: do ***not*** show new ad format)\n - ***Variant A*** variant: *Value* set to `true` (which means: show new ad format)\n\n For this tutorial, the *Baseline* variant ***will not show*** the new ad\n format to users at all, but the *Variant A* variant ***will show*** the\n new ad format to a small subset of users. This is controlled by the\n parameter's boolean value. These values are set here in\n Firebase A/B Testing, but it's actually Firebase Remote Config\n that sends these values to your app's code for handling. You'll set up\n Remote Config in the next step.\n | **Note:** In your own future tests, if you set up various experiments and variants, we recommend giving variants meaningful names to easily track the test results later on.\n\nFirebase console UI showing how to set up the variants of A/B test\" class=\"screenshot\"\\\u003e\n\nClick **Review** to make sure your experiment is set up as expected. However,\nbefore you can actually start the experiment, you need to define how your app's\ncode will react to the `true` or `false` parameter value received from Firebase.\nProceed to the next step to implement how Remote Config handles the\n`SHOW_NEW_AD_KEY` parameter.\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\n\u003cbr /\u003e\n\n[arrow_back_ios**Step 1** : Use AdMob to create a new ad unit variant](/docs/tutorials/test-ad-format-adoption/step-1)\n[**Step 3** : Handle Remote Config parameter valuesarrow_forward_ios](/docs/tutorials/test-ad-format-adoption/step-3)\n\n\u003cbr /\u003e\n\n*** ** * ** ***"]]