Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrsuh/cordova-seamstress
http://mrsuh.github.io/cordova-seamstress
https://github.com/mrsuh/cordova-seamstress
cordova cordova-application javascript less
Last synced: about 1 month ago
JSON representation
http://mrsuh.github.io/cordova-seamstress
- Host: GitHub
- URL: https://github.com/mrsuh/cordova-seamstress
- Owner: mrsuh
- License: mit
- Created: 2015-11-22T11:00:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T11:23:25.000Z (almost 6 years ago)
- Last Synced: 2024-11-08T21:40:50.938Z (3 months ago)
- Topics: cordova, cordova-application, javascript, less
- Language: CSS
- Homepage:
- Size: 2.14 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cordova Seamstress application #
Simple Cordova application: calculator for seamstress with its own logic
![Android app](https://github.com/mrsuh/cordova-seamstress/blob/master/img/img.jpg)
## Cordova installation ##
### install Python ###
download source code from [python](https://www.python.org/downloads)
and extract archive to folder `python`
```bash
cd python
./configure
make
sudo make install
```### install Node.js ###
download source code from [node.js](https://nodejs.org/en/download)
and extract archive to folder `node`
```bash
cd node
./configure
make
sudo make install
```### install Java JDK ###
download source code from [java jdk](http://www.oracle.com/technetwork/java/javase/downloads/index.html)
and extract archive to folder `java`
```
mv java /usr/lib/java
```add to file `~/.bash_profile`
```
JAVA_HOME=/usr/lib/java
PATH=$PATH:/usr/lib/java/bin
```### install Android SDK ###
download source code from [android sdk](http://developer.android.com/sdk/index.html)
and extract archive to folder `android-sdk`
```
mv android-sdk /usr/lib/android-sdk
```add to file `~/.bash_profile`
```
PATH=$PATH:/usr/lib/android-sdk/tools:/usr/lib/android-sdk/platform-tools
```run android
```
android
```and download libs:
* Android SDK Build-tools
* Android 6.0 (API 23)
* Android Support Repository (Extras)### install Cordova ###
```
sudo npm install -g cordova
```## Creating Cordova project ##
```
cordova create project
cd project
cordova platforms add android
```## Building codrova project ##
```
cordova build
```