Question

Billing permissions is not being added after building

  • 11 October 2023
  • 1 reply
  • 113 views

Badge +1

When I do a build as follows

eas build -p android --local;

the .aab file that is generated when uploaded does not have the billing permissions.

I”m using the latest expo for react native.  How do I get billing permissions to show up?

I”ve also added this is in my packages.json

"react-native-purchases": "^7.0.0",

my partial app.json

"android": {

"versionCode": 316,

"adaptiveIcon": {

"foregroundImage": "./assets/adaptive-icon.png",

"backgroundColor": "#ffffff"

},

"permissions": [

"android.permission.RECORD_AUDIO",

"com.android.vending.BILLING"

]


1 reply

Userlevel 3
Badge +3

Our library depends on Billing Client which automatically adds the BILLING permission. Can you please share the content of the AndroidManifest.xml inside the generated .aab file? The permissions section should be enough. You can explore that file using Android Studio. 

Reply