Doc requirements for platform api expectations (#1)

Ready for review!

<!--
Please make sure the checklist boxes are all checked before submitting the PR. The checklist
is intended as a quick reference, for complete details please see our Contributor Guidelines:

http://cordova.apache.org/contribute/contribute_guidelines.html

Thanks!
-->

### Platforms affected


### What does this PR do?
Document requirements for platform api expectations

### What testing has been done on this change?

### Checklist
- [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database
- [ ] Commit message follows the format: "CB-3232: (android) Fix bug with resolving file paths", where CB-xxxx is the JIRA ID & "android" is the platform affected.
- [ ] Added automated test coverage as appropriate for this change.
1 file changed
tree: 79883900a6d53bce160cfba0f151487cfb147398
  1. .github/
  2. spec/
  3. src/
  4. .gitignore
  5. CONTRIBUTING.md
  6. LICENSE
  7. NOTICE
  8. package.json
  9. PlatformRequirements.md
  10. README.md
README.md

cordova-test-platform

This repo contains the code for an Apache Cordova platform that allows you to build applications that target NOTHING. This platform is purely for testing, although it is also a good resource to see the minimum requirements to implement a new platform.

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

How to Use This

This repository contains a reference implementation of Cordova's Platform API. The Platform API defines interfaces for Cordova tooling to be able to create, build/compile, run/emulate and clean Cordova projects targeted at a specific platform. Core Cordova platforms such as cordova-android and cordova-ios implement this API. This API is then used by tools such as cordova-cli and cordova-lib when managing platform-specific actions in cross-platform Cordova projects.

Further Reading