Go to file
エリス a951793431
feat: add google services support (#893)
* feat: Add support for GoogleServicesEnabled preference option
* fix: wrap google-services classpath with GoogleServicesEnabled flag
* chore: bump google-services version to 4.2.0
* feat: Add support for GoogleServicesVersion preference option

Co-authored-by: Maksim Chemerisuk <chemerisuk@users.noreply.github.com>
2020-01-16 08:40:54 +09:00
.github Add or update GitHub pull request and issue template 2019-02-11 18:36:02 +01:00
bin feat: add google services support (#893) 2020-01-16 08:40:54 +09:00
cordova-js-src Ensure to lint as many files as possible (#854) 2019-10-21 18:26:17 +02:00
framework feat: add google services support (#893) 2020-01-16 08:40:54 +09:00
spec Increased default target sdk to 29 (#848) 2020-01-07 11:47:27 -04:00
test Increased default target sdk to 29 (#848) 2020-01-07 11:47:27 -04:00
.eslintignore Improve ESLint script 2018-05-19 23:15:15 +02:00
.eslintrc.yml CB-12895 : added eslint and removed jshint 2017-06-23 08:07:07 -07:00
.gitattributes CB-9836 Add .gitattributes to prevent CRLF line endings in repos 2015-11-12 18:34:41 +03:00
.gitignore Ignore auto-generated eclipse buildship files (#831) 2020-01-07 15:32:19 -04:00
.ratignore CB-13912: updated .ratignore to include build diectory 2018-02-20 11:36:55 -08:00
.reviewboardrc Add a .reviewboardrc file to make using post-review easier. 2013-05-21 12:35:47 -04:00
.travis.yml Increased default target sdk to 29 (#848) 2020-01-07 11:47:27 -04:00
appveyor.yml Increased default target sdk to 29 (#848) 2020-01-07 11:47:27 -04:00
CONTRIBUTING.md Remove mention of ICLA from contribution guidelines (#460) 2018-06-29 08:47:34 +08:00
LICENSE Fixed line endings 2015-10-20 16:15:57 -07:00
NOTICE Checked the notice file, updating to 2015 2015-10-26 16:42:06 -07:00
package.json chore: drop q module (#833) 2020-01-07 21:22:59 +09:00
README.md remove JIRA link 2018-10-04 01:12:02 +02:00
RELEASENOTES.md minor-8.1.0 Updated version and RELEASENOTES.md for release 8.1.0 2019-09-11 12:41:25 +09:00
VERSION chore: bump version to 9.0.0-dev (#890) 2020-01-06 12:07:05 +09:00

Build status Build Status codecov.io

Cordova Android

Cordova Android is an Android application library that allows for Cordova-based projects to be built for the Android Platform. Cordova based applications are, at the core, applications written with web technology: HTML, CSS and JavaScript.

Apache Cordova is a project of The Apache Software Foundation (ASF).

Requires

Cordova Android Developer Tools

We recommend using the Cordova command-line tool to create projects and be able to easily install plugins.

However, the following scripts can be used instead:

./bin/create [path package activity] ... creates the ./example app or a cordova android project
./bin/check_reqs ....................... checks that your environment is set up for cordova-android development
./bin/update [path] .................... updates an existing cordova-android project to the version of the framework

These commands live in a generated Cordova Android project. Any interactions with the emulator require you to have an AVD defined.

./cordova/clean ........................ cleans the project
./cordova/build ........................ calls `clean` then compiles the project
./cordova/log   ........................ streams device or emulator logs to STDOUT
./cordova/run   ........................ calls `build` then deploys to a connected Android device. If no Android device is detected, will launch an emulator and deploy to it.
./cordova/version ...................... returns the cordova-android version of the current project

Using Android Studio

  1. Create a project
  2. Import it via "Non-Android Studio Project"

Running the Native Tests

The test/ directory in this project contains an Android test project that can be used to run different kinds of native tests. Check out the README contained therein for more details!