Skip to content
atilacamurca edited this page Jul 11, 2012 · 2 revisions

After muxie-maker installed all you need to do is:

Create a new directory for your project, let's say 'foo':

mkdir foo
cd foo

Initialize your project:

muxie-maker init org.foo.app "Foo Mobile"

Add rss services of your own:

muxie-maker service

Choose a service, let's say twitter. It's options 2.
Enter your twitter uid, 'foo'. It's your username.
Then enter a description, or the name that you want your users see, '@foo'.

Add as many services you have, and then it's time to download mad3-muxie.
This is the template for your app. Look for the lastest version on https://github.com/mad3linux/mad3-muxie/tags.

Extract to your project directory 'foo', and rename to 'mad3-muxie'. Now
it's time to test your app.

muxie-maker test

This will generate a apk file in debug mode and install in the emulator.

After test if your services are running fine, it's time to generate a final version.
Now you need to create a keystore file to sign your app.

muxie-maker genkey

Answer the questions and generate a release version

muxie-maker release

At last just export the app to your project directory 'foo'

muxie-maker export

After that you may want to cleanup build files and uninstall the app in the emulator. To do that just

muxie-maker clean-all
Clone this wiki locally