0

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

enter image description here

Chris Albert
  • 2,462
  • 8
  • 27
  • 31

1 Answers1

0

You should add the below line in your AndroidManifest.xml file

android:exported="true"

enter image description here

Anand
  • 4,355
  • 2
  • 35
  • 45