Where to change minSdkVersion setting in PhoneGap app

后端 未结 1 1895
南旧
南旧 2021-01-01 11:58

I\'m having a strange issue when trying to build a basic PhoneGap app on OS X. The app is setup with just the Android platform. I\'m getting the following error when I enter

相关标签:
1条回答
  • 2021-01-01 12:18

    The AndroidManifest.xml file is overwritten during the build process by the values from config.xml. You should define this properties in the config.xml file.

    Reference: http://docs.build.phonegap.com/en_US/3.3.0/configuring_preferences.md.html#Preferences

    <preference name="android-minSdkVersion" value="10" />
    
    0 讨论(0)
提交回复
热议问题