Answer Android 12 Issue on PlayStore

  • When asking for help or guidance - please ensure to check the `Question` box before completing your New Thread.
    This enables yourself and other users to vote for the best answer given and will help people find the best answer quicker in future!
    - Brain
Advertise with us


Welcome!
Join this incredible group of like-minded people and start discussing everything IPTV.
Register now

asad88

Elite member
Jun 10, 2022
115
700
Pakistan
ftsol.pk
Anyone facing this issue while uploading to playstore
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
 

asad88

Elite member
Jun 10, 2022
115
700
Pakistan
ftsol.pk
I faced same problem

Sorry to update already resolved this issue. You need to add android android:exported="true" or android:exported="false" accroding to your choice before any activity, service, broadcast or activity alias example below

If your activty looks like this.

Code:
<activity android:configChanges="keyboardHidden|locale|orientation|screenSize" android:name="grim.rebrandapk.smarters.view.activity.SplashActivity" android:screenOrientation="sensorLandscape">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
                <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
            </intent-filter>


you need to add android:exported="true" or android:exported="false" like below.

Code:
<activity android:configChanges="keyboardHidden|locale|orientation|screenSize" android:name="grim.rebrandapk.smarters.view.activity.SplashActivity" android:screenOrientation="sensorLandscape"
android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
                <category android:name="android.intent.category.LEANBACK_LAUNCHER"/>
            </intent-filter>


You need to add these before all <intent-filter> sat some places you will face two <intent-filter> you will just add before the first one.
 
AdBlock Detected

We get it, advertisements are annoying!

Sure, ad-blocking software does a great job at blocking ads, but it also blocks useful features of our website. For the best site experience please disable your AdBlocker.

I've Disabled AdBlock