For Android: the error: "platforms/android/ant-build/AndroidManifest.xml:2: error: Error: Float types not allowed (at 'versionCode' with value 'NaN')."
cordova run android's generated AndroidManifest.xml has "NaN" as the versionCode - which causes the build to fail
Open the config.xml file second line look like this
<widget id="tld.domain.app" version="1.0"
so that issue is version give like this. Its problem solved me.
<widget id="tld.domain.app" version="1.0.0"
No comments:
Post a Comment