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
If you open platforms/android folder with Android Studio you get the following error:
ERROR: The minSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.
Remove minSdkVersion and sync project
Affected Modules: app
WARNING: The targetSdk version should not be declared in the android manifest file. You can move the version from the manifest to the defaultConfig in the build.gradle file.
Remove targetSdkVersion and sync project
Affected Modules: app
So to fix it, the minSdkVersion and targetSdkVersion need to be removed from the manifest file in the project template. Both of them should be set through the gradle file.
The text was updated successfully, but these errors were encountered:
If you open
platforms/android
folder with Android Studio you get the following error:So to fix it, the minSdkVersion and targetSdkVersion need to be removed from the manifest file in the project template. Both of them should be set through the gradle file.
The text was updated successfully, but these errors were encountered: