Hello,
Welcome to our Microsoft Q&A platform!
Based on your error, I find a way to fix it
In your AndroidManifest.xml
, add android:extractNativeLibs="true"
to the <application>
tag the following parameter:
<application android:label="TestArchieApp.Android" android:theme="@style/MainTheme" android:extractNativeLibs="true"></application>
This is due to a change in the android gradle plugin, which changed the default value from true to false in Version 3.6.0 (Source: https://developer.android.com/guide/topics/manifest/application-element#extractNativeLibs).
And when re-build your application. If you get the following error.
Error Found tag id where item is expected
Please enable the Use incremental Android packaging system(aap2) in the Android Options tag. and Linking set to None
Best Regards,
Leon Lu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.