build(android): declare com.android.vending.BILLING permission
Required to unlock Google Play Console's one-time products UI (without it,
the IAP creation page says 'add BILLING to your APK'). Also added automatically
by the in_app_purchase plugin once wired; declaring it here lets us upload an
AAB that unlocks IAP setup before the Flutter IAP plumbing lands.
| .. | .. |
|---|
| 5 | 5 | <uses-permission android:name="android.permission.VIBRATE"/> |
|---|
| 6 | 6 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> |
|---|
| 7 | 7 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> |
|---|
| 8 | + <!-- Required by Play Console to enable the One-time products UI; also added |
|---|
| 9 | + automatically once the in_app_purchase plugin is wired. Declaring it |
|---|
| 10 | + now lets us upload an AAB that unlocks IAP creation before the Flutter |
|---|
| 11 | + IAP plumbing is in place. --> |
|---|
| 12 | + <uses-permission android:name="com.android.vending.BILLING"/> |
|---|
| 8 | 13 | <application |
|---|
| 9 | 14 | android:label="PAILot" |
|---|
| 10 | 15 | android:name="${applicationName}" |
|---|