Top

Probot documentation

Reward Balance Point Increase:


  1. Go to AppController which is in lib -> controllers -> common_controller -> app_controller.dart
  2. You have to change at 2 place 1. in Google Reward Ad and 2. Facebook Reward Ad

  3. Google Reward:


    1. In that search function showRewardedAd (For Google Reward) in that see line int count = envConfig["balance"] + 1;
    2. Just change value 1 with your requirement points
    3. For Example : You want give reward balance 10 after watch reward then give 10 instead of 1.
      int count = envConfig["balance"] + 10;

    Facebook Reward:


    1. In that search function showFacebookRewardedAd (For Faceboo; Reward) in that see line int count = envConfig["balance"] + 1;
    2. Just change value 1 with your requirement points
    3. For Example : You want give reward balance 10 after watch reward then give 10 instead of 1.
      int count = envConfig["balance"] + 10;