You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Google play store targeted to API 31, For this API level mentioning android:exported="true" is activity is mandatory in AndroidManifest.xml file explicitly. But after adding this attribute my ionic 3 application is not building.
Working <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="com.flyingsoftgames.xapkreader.XAPKDownloaderActivity" />
Not Working <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="com.flyingsoftgames.xapkreader.XAPKDownloaderActivity" android:exported="true" />
Is there any other way to solve this issue please save my time, Thanks in advance.
The text was updated successfully, but these errors were encountered:
Google play store targeted to API 31, For this API level mentioning android:exported="true" is activity is mandatory in AndroidManifest.xml file explicitly. But after adding this attribute my ionic 3 application is not building.
Working
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="com.flyingsoftgames.xapkreader.XAPKDownloaderActivity" />
Not Working
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:name="com.flyingsoftgames.xapkreader.XAPKDownloaderActivity" android:exported="true" />
Is there any other way to solve this issue please save my time, Thanks in advance.
The text was updated successfully, but these errors were encountered: