我收到此错误
> platforms/android/build/intermediates/manifests/full/armv7/debug/AndroidManifest.xml:5:26-37: > AAPT: Float types not allowed (at 'versionCode' with value > '16130110020').
如何为versionCode启用浮点类型?
答案 0 :(得分:3)
VersionCode不允许浮点值,它是一个用作内部版本号的整数,versionName是一个字符串,用作向用户显示的版本号。
Ex:versionCode 12345 versionName 1.0.9
参考:https://developer.android.com/studio/publish/versioning.html?hl=en
答案 1 :(得分:1)
我认为在清单文件中你提供了类似'1.1'的东西,而不是使用'2',因为正如它所说的那样使用 int数据类型,而不是你在清单文件中提到的浮点数据类型。