From 01b26eb410542d33200cf300ff5d7228dafb9a9e Mon Sep 17 00:00:00 2001
From: Matthias Nott <mnott@mnsoft.org>
Date: Thu, 11 Jun 2026 13:24:43 +0200
Subject: [PATCH] build(android): declare com.android.vending.BILLING permission
---
android/app/src/main/AndroidManifest.xml | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index f47a419..27cda93 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -5,6 +5,11 @@
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
+ <!-- Required by Play Console to enable the One-time products UI; also added
+ automatically once the in_app_purchase plugin is wired. Declaring it
+ now lets us upload an AAB that unlocks IAP creation before the Flutter
+ IAP plumbing is in place. -->
+ <uses-permission android:name="com.android.vending.BILLING"/>
<application
android:label="PAILot"
android:name="${applicationName}"
--
Gitblit v1.3.1