Krzy 1 Posted January 17, 2023 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 ?? Share this post Link to post
Lajos Juhász 293 Posted January 17, 2023 You can try to watch the webinar - https://blogs.embarcadero.com/developing-for-android-11-12-with-delphi-11-alexandria/ Share this post Link to post
Krzy 1 Posted January 17, 2023 Yes. There is no solution to the problem. Share this post Link to post
vfbb 285 Posted January 17, 2023 Open your Android manifest template, and inside the activity tag, put the line: android:exported="true" Share this post Link to post
Krzy 1 Posted January 17, 2023 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
vfbb 285 Posted January 17, 2023 (edited) 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 January 17, 2023 by vfbb 3 Share this post Link to post