REQUEST Help for smarters in API 31 (Android 12)

caasta

New member
Joined
May 2, 2022
Messages
9
Awards
1
Offline
Help for smarters in API 31 (Android 12)

AndroidManifest.xml pls udpate for uploader in Google Play. Required Api 31.
 

G-man

Well-known member
Top Poster Of Month
Joined
Apr 16, 2021
Messages
1,883
Awards
4
Offline
DONT upload to google play , the version of smarters you have will probably be a modded one ? if so avoid putting on the playstore
your just asking for trouble when it comes knocking
 

credibletv

Well-known member
Joined
Jul 31, 2022
Messages
142
Awards
3
Offline
in the AndroidManifest.xml file, add
android:exported="true"

You can insert code below android:name="MainActivity" or before <intent-filter>
Hey Can you explain a little do we need to add all intent filter ?
 

Poncho

Owner
Staff member
Admin
Joined
Apr 5, 2021
Messages
1,725
Awards
5
Offline
in the AndroidManifest.xml file, add
android:exported="true"

You can insert code below android:name="MainActivity" or before <intent-filter>
Can you find a large spoon and feed him with it 🤣
 
  • Like
Reactions: 9bz

credibletv

Well-known member
Joined
Jul 31, 2022
Messages
142
Awards
3
Offline
Can you find a large spoon and feed him with it 🤣
Brother there is like severeal services and intent filters are there i have added in almost every thing but still it is not uploading
 

credibletv

Well-known member
Joined
Jul 31, 2022
Messages
142
Awards
3
Offline
Hey Guys Update Related to Android 12 if you want to upload it to PlayStore

You need to add this code before any Activity, Service, Broadcast using intent filter example is below.

This is how code look alike before
Code:
<activity
            android:name="com.ftsol.okkito.view.activity.SplashActivity"
            android:configChanges="keyboardHidden|locale|orientation|screenSize"
            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>
        </activity>

You need to add the android:exported="true" or "false" but i think launcher orsplash u need to add true.
Code:
<activity
            android:name="com.ftsol.okkito.view.activity.SplashActivity"
            android:configChanges="keyboardHidden|locale|orientation|screenSize"
            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>
        </activity>
 
Top