Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/candera/hellophonegapandroid
A simple PhoneGap application making use of ClojureScript
https://github.com/candera/hellophonegapandroid
Last synced: 20 days ago
JSON representation
A simple PhoneGap application making use of ClojureScript
- Host: GitHub
- URL: https://github.com/candera/hellophonegapandroid
- Owner: candera
- Created: 2012-02-07T21:55:54.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-07T21:57:01.000Z (almost 13 years ago)
- Last Synced: 2024-12-09T09:51:23.943Z (25 days ago)
- Language: JavaScript
- Homepage:
- Size: 316 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
# HelloPhoneGapAndroid
A simple project that demonstrates using ClojureScript with PhoneGap,
targeting Android.This project is *very* preliminary - do not take it as an indication
that this is how you should do things.## Building and Installing
To build and install the project, type
```
ant clean debug install
```You will need to have an Android device or emulator attached and
running. After completion of this command, a native app called "App"
will appear on the device.## Structure
The HTML page for the application appears in the
`assets/www/index.html` file. The ClojureScript that drives the app is
located in `src/cljs/HelloPhoneGap.cljs`. The `ant debug install` task
will invoke `lein cljsbuild once` to compile the ClojureScript to the
`assets/www/main.js` file that is referenced by `index.html`.