Jan Berkel

Results 131 comments of Jan Berkel

for now i've implemented (some) of this by checking the manifest file: jberkel/android-plugin@84d9e1b6cd00164051c31eb98d1d17fde9f60288

proguard is required to run on unmodified devices/emulators at the moment - need to update the docs.

for the latest snapshot you should use: ``` scala resolvers += Resolver.url("scalasbt releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-snapshots"))(Resolver.ivyStylePatterns) addSbtPlugin("org.scala-sbt" % "sbt-android-plugin" % "0.6.3-20130429-SNAPSHOT") ``` you might need to add imports to your projects...

Have a look at `TypedResources.scala`: ``` scala layoutResources

interesting. with the current master you can do: ``` override def skipProguard = true ``` to skip the proguard step.

you actually need to put the override into both projects (main + test): ``` trait Defaults extends BaseAndroidProject { def androidPlatformName = "android-7" override def skipProguard = true } class...

just tried it with a patched emulator image as described above - it works fine, and speeds up the development process considerably. i've mirrored the svn repo with the scripts...

yes this sounds good. i think we can get rid of add-ons path alltogether since the addons could be pulled in via dependencies.