This repository was 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
Building Java Android Projects
jberkel edited this page Feb 26, 2012
·
2 revisions
If you don't use Scala yet and want to use the plugin to build your existing
Java app you can do by adding the PlainJavaProject.settings
to your settings:
object AndroidBuild extends Build {
lazy val main = Project (
"My Project",
file("."),
settings = General.fullAndroidSettings ++ PlainJavaProject.settings
)
}
This will change the defaults to the directory structure expected by Android's
build.xml
file and skip the Proguard optimisation step.
See sms-backup-plus for an example project.
- 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