https://github.com/doo/my_awesome_cordova_ionic_app
Cordova Ionic tutorial app
https://github.com/doo/my_awesome_cordova_ionic_app
List: my_awesome_cordova_ionic_app
Last synced: 2 months ago
JSON representation
Cordova Ionic tutorial app
- Host: GitHub
- URL: https://github.com/doo/my_awesome_cordova_ionic_app
- Owner: doo
- Created: 2021-10-07T16:25:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-27T17:48:47.000Z (almost 3 years ago)
- Last Synced: 2025-07-17T12:48:53.663Z (12 months ago)
- Language: TypeScript
- Homepage:
- Size: 2.31 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Awesome Cordova Ionic App
A simple Cordova Ionic demo app based on the tutorial in the blog post
["Cordova tutorial: How to integrate our scanning functionalities"](https://scanbot.io/blog/cordova-tutorial-how-to-integrate-our-scanning-functionalities).
For a **full** example project which demonstrates **all** API methods of the Scanbot SDK Cordova Plugin
see the repo [scanbot-sdk-example-ionic](https://github.com/doo/scanbot-sdk-example-ionic).
## How to run this app
Install the latest versions of [Cordova](https://cordova.apache.org) and [Ionic](https://ionicframework.com).
Fetch this repository and navigate to the project directory.
```
cd my_awesome_cordova_ionic_app/
```
Install node modules:
```
npm install
```
Install Cordova platforms and plugins (defined in the config.xml of this app):
```
ionic cordova prepare
```
Connect a device via USB and run the app.
**Android:**
```
ionic cordova run android
```
**iOS:**
1) Prepare the iOS project for Xcode:
```
ionic cordova prepare ios
```
2) Open the project `platforms/ios/my_awesome_cordova_ionic_app.xcworkspace` in Xcode and adjust the *Signing & Capabilities* settings.
Then run the app in Xcode.