I have an app that is ready for internal testing on the Google Play store. However, when I go to upload the .aab file, I get the error:
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. See: developer.android.com/about/versions/12/behavior-changes-12#exported
I have tried adding android:exported="true"
to my AndroidManifest.xml file as suggested in other posts but none of that has worked. I'm not sure what to try next. Thank you for your help!