Add support for the browser platform

This commit is contained in:
Sebastián Katzer
2017-01-27 10:23:46 +01:00
parent bcda9ed6a6
commit 0db148518e
7 changed files with 119 additions and 26 deletions

View File

@@ -34,6 +34,9 @@ node_js:
notifications:
email: false
matrix:
fast_finish: true
before_install:
- xcrun simctl delete 79C525D3-2383-4201-AC3A-81810F9F4E03
@@ -42,20 +45,22 @@ install:
- npm install -g cordova
- brew install gradle
- brew install android-sdk
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a -u -t "tools,platform-tools,build-tools-25.0.2,android-16"
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a -u -t "tools,platform-tools,build-tools-25.0.2,android-25,extra-android-m2repository"
before_script:
- cordova create myApp org.apache.cordova.myApp myApp
- cd myApp
- cordova platform add ios@latest android@latest
- sed -i -r 's:\(<content.*\):\1<preference name="android-targetSdkVersion" value="16" />:' config.xml
- cordova platform add android@latest browser@latest ios@latest
- cordova plugin add cordova-plugin-background-mode --searchpath $TRAVIS_BUILD_DIR
- cordova platform ls
- cordova plugin ls
script:
- cordova build ios
- cordova build android
- cordova plugin add cordova-plugin-wkwebview-engine
- cordova build browser
- cordova build ios
- cordova plugin add cordova-plugin-crosswalk-webview
- cordova build ios
- cordova plugin add cordova-plugin-wkwebview-engine
- cordova build android
- cordova build ios