This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
Github integration
jberkel edited this page Nov 30, 2011
·
6 revisions
You can upload the apk files directly to github's file section, just set your
github username in ~/.gitconfig
:
[github]
user = jberkel
You'll need to add Github.settings
to your
configuration in build.scala
:
settings = General.androidFullProjectSettings ++ Github.settings ++ Seq (
...
githubRepo in Android := "github-repo-name" // or "username/github-repo-name"
)
Then, from the sbt console:
> android:github-upload
[info] uploading to https://github.s3.amazonaws.com/
To delete the current version from github:
> android:github-delete
If you want to avoid typing your password every time check out the Password Manager instructions.
- Getting started
- Scala versions
- Android Manifest generation
- Typed resources references
- ProGuard
- DDMS integration
- Building Java Android projects
- Building NDK projects
- Consuming Android Library projects
- Github integration
- Building Android Test Projects
- Password Manager
- Releasing to the Android Market
- Projects using sbt-android-plugin
- Contributors