skip to Main Content

"You uploaded an APK or Android App Bundle which has an activity, activity alias, service or broadcast receiver with intent filter, but without ‘android:exported’ property set. This file can’t be installed on Android 12 or higher."

My Client is getting this error while uploading my App on Play Store. I have resolved the issue on on my side. but how Can I test this on Android Studio. As I was not getting the error earlier as well? (How I solved this ? I defined android:exported Property in Manifest.xml).

Complied SDK : 31
minSDK : 19

2

Answers


  1. It’s a change in Android as of 12. Exported used to have a default. For greater security it no longer has a default and you must specify the value. See https://developer.android.com/about/versions/12/behavior-changes-12 for more details.

    Login or Signup to reply.
  2. Yes, you can test it on the emulator. Install an emulator with 31 SDK
    create emulator

    It helps you check your fix

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search