ionic add platform android with custom android-target

本秂侑毒 提交于 2019-12-20 11:56:25

问题


Anybody knows how to add platform in ionic with custom android target ? If I try this command :

ionic platform add android

It always add android platform with newest android-target platform, anybody knows how to custom the android target without edit the manifest and custom platform add android version ?


回答1:


To change the build version you want change your config.xml located at the root project's path.

Following lines add in config.xml and then settings are updated automatically at the time building android app.

<platform name="android">

  <preference name="android-minSdkVersion" value="XX"/> 
  <preference name="android-targetSdkVersion" value="XX"/>

  <!--other line code -->

</platform>

For Ionic2 please check my gist to here.

Hope this will help you !




回答2:


You should be able to see all the versions of platforms installed in your project with:

cordova platform list

Then you can remove the current version with:

cordova platform remove android

And install the version you want/need with: (in my case 6.1.1)

cordova platform add android@6.1.1

Source: cordova.apache.org documentation




回答3:


if you are unaware about the version number try following command

cordova platform add android@latest

this will add latest platform to your application, make sure you try the following command to verify if it breaks anything.

cordova build android


来源:https://stackoverflow.com/questions/35573485/ionic-add-platform-android-with-custom-android-target

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!