Certificates / access rights Apps

0
Hi all,   I am Building Native mobile Apps using the New Native builder included in Mendix Studio Pro 15.1 now I have my IOS certificates and Google keystore file. For IOS my app is online via Testflight, but in the google Play.Console i cannot create a release due to the Permission (Camera, ….) settings.   In Android studio I can provide these settings, but how is this possible using the build in Mendix Studio Pro? So what is the best way to add these Permission settings (Without using Andoid Studio to build the APK).   Thanks Steven  
asked
1 answers
1

Check if

<uses-permission android:name="android.permission.CAMERA" />

Is included in your manifest on github.

[edit]

Google playstore needs to have a privacy policy when your app uses certain persmission. In your case the camera. You can add one in the play console

  1. Open Play Console and go to the App content page (Policy > App content).
  2. Under "Privacy Policy," select Start
    • Note: If you’ve previously added a privacy policy and want to make changes, you’ll see and select Manage instead of start.
  3. Enter the URL hosting the privacy policy online.
  4. Save your changes.

https://support.google.com/googleplay/android-developer/answer/9859455?hl=en

answered