-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 8 additions, 0 deletions.gitignore
- .vscode/launch.json 115 additions, 0 deletions.vscode/launch.json
- .vscode/plugins.json 2 additions, 0 deletions.vscode/plugins.json
- config.xml 25 additions, 0 deletionsconfig.xml
- jsconfig.json 2 additions, 0 deletionsjsconfig.json
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 42 additions, 0 deletionspackage.json
- typings/cordova-typings.d.ts 3 additions, 0 deletionstypings/cordova-typings.d.ts
- www/index.html 65 additions, 0 deletionswww/index.html
.gitignore
0 → 100644
.vscode/launch.json
0 → 100644
.vscode/plugins.json
0 → 100644
config.xml
0 → 100644
jsconfig.json
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "io.cordova.hellocordova", | ||
"displayName": "HelloCordova", | ||
"version": "1.0.0", | ||
"description": "A sample Apache Cordova application that responds to the deviceready event.", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ | ||
"ecosystem:cordova" | ||
], | ||
"author": "Apache Cordova Team", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"cordova-android": "^9.0.0", | ||
"cordova-browser": "^6.0.0", | ||
"cordova-plugin-device-motion": "^2.0.1", | ||
"cordova-plugin-device-orientation": "^2.0.1", | ||
"cordova-plugin-gyroscope": "^0.1.4", | ||
"cordova-plugin-indooratlas": "git+https://github.com/IndoorAtlas/cordova-plugin.git", | ||
"cordova-plugin-magnetometer": "git+https://github.com/sdesalas/cordova-plugin-magnetometer.git", | ||
"cordova-plugin-sensors": "git+https://github.com/fabiorogeriosj/cordova-plugin-sensors.git", | ||
"cordova-plugin-whitelist": "^1.3.4" | ||
}, | ||
"cordova": { | ||
"plugins": { | ||
"cordova-plugin-whitelist": {}, | ||
"cordova-plugin-device-motion": {}, | ||
"cordova-plugin-device-orientation": {}, | ||
"cordova-plugin-gyroscope": {}, | ||
"cordova-plugin-magnetometer": {}, | ||
"cordova-plugin-indooratlas": {}, | ||
"cordova-plugin-sensors": {} | ||
}, | ||
"platforms": [ | ||
"android", | ||
"browser" | ||
] | ||
} | ||
} | ||
\ No newline at end of file |
typings/cordova-typings.d.ts
0 → 100644
www/index.html
0 → 100644
Please register or sign in to comment