Jump to content
Sign in to follow this  
Krzy

Upload Google Play android FMX app problem

Recommended Posts

Hi

When I try to upload .abb file (FMX app) I got:

(Delphi 11.2)

You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, but without the 'android:exported' property set. This file can't be installed on Android 12 or higher. See: developer.android.com/about/versions/12/behavior-changes-12#exported

How can I fix it ??

Capture.PNG

Share this post


Link to post

Open your Android manifest template, and inside the activity tag, put the line:

 

android:exported="true"

Share this post


Link to post

I did it.

But when I click Menu > Project > Deploy , Delphi update file AndroidManifest.xml and delete this line.

Share this post


Link to post
18 minutes ago, Krzy said:

I did it.

But when I click Menu > Project > Deploy , Delphi update file AndroidManifest.xml and delete this line.

You should edit your AndroidManifest.template.xml (You can found it template in your dproj folder after the first compilation to android platform), and not the final AndroidManifest in deploy path.

Edited by vfbb
  • Like 3

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×