Reward Balance Point Increase:
- Go to AppController which is in lib -> controllers -> common_controller ->
app_controller.dart
- You have to change at 2 place 1. in Google Reward Ad and 2. Facebook Reward Ad
Google Reward:
- In that search function showRewardedAd (For Google Reward) in that see line
int count = envConfig["balance"] + 1;
- Just change value 1 with your requirement points
- For Example : You want give reward balance 10 after watch reward then give 10
instead of 1.
int count = envConfig["balance"] + 10;
Facebook Reward:
- In that search function showFacebookRewardedAd (For Faceboo; Reward) in that
see line
int count = envConfig["balance"] + 1;
- Just change value 1 with your requirement points
- For Example : You want give reward balance 10 after watch reward then give 10
instead of 1.
int count = envConfig["balance"] + 10;