There was a problem while parsing the package
Problem: There was a problem while parsing the package
Solution 1: android:exported="true"
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
android:launchMode="singleTask"
android:exported="true"
android:windowSoftInputMode="adjustPan">
If an activity, service, or broadcast receiver uses intent filters and doesn't have an explicitly-declared value for android:exported, your app can't be installed on a device that runs Android 12 or higher.
Solution 2: Allow installation from unknown resources
In General the apps are downloaded from Google play console and when downloaded from other sources, android restricts it from installing if the "Allow installation from unknown resources" is disabled in settings. In this case the simple solution is to enable "Allow installation from unknown resources".
Unknown sources location in settings varies in each device so accordingly it has to be enabled.
Few of the devices has it as following
Android 8.x & higher
- From a Home screen, swipe up or down from the center of the display to access the apps screen.
- Navigate: Settings
- Apps.
- Tap Menu icon (upper-right).
- Tap Special access.
- Tap Install unknown apps.
- Select the unknown app then tap the Allow from this source switch to turn on.
Android 7.x & lower
- From a Home screen, navigate to Settings.
- Tap Lock screen and security.If unavailable, tap Security.
- Tap the Unknown sources switch to turn on or off.If unavailable, Unknown sources to turn on or off. Enabled when check mark is present.
- To continue, review prompt then tap OK.
Solution 3: Clear Cache Cookies in Play Store
Hope this helped you!!
0 Comments