On Fri, Mar 14, 2014 at 5:12 AM, David Pérez <[email protected]> wrote: > Let's hope this is the last stone block I face when running my first > SBT+Android-sdk-plugin+Scala+Scaloid project. > > I've checked that sbt places my apk in target/android-bin/MyApp-debug.apk. > > I know how to build the .apk file, but not how to debug it with IDEA 13.0.2. > I'm using the SBT integration that's new in IDEA 13, so probably the > sbt-idea plugin is not necessary. > > Probably some of you have valuable experiences on how to do this, that would > you like to share.
- We used the sbt idea plugin to generate an idea config. - Open the generated project in idea. - If necessary, adjust the android sdk version used. - When creating a run configuration, remove make and add an sbt action with "android:package-debug". IOW, don't try to build with idea. Let it delegate to sbt. Works well for me. I especially like deploying debug apks to devices as it makes it much easier to deal with multiple devices. (In the run configuration, I elect to prompt for a device.) Jim -- Jim Fulton http://www.linkedin.com/in/jimfulton -- You received this message because you are subscribed to the Google Groups "scala-on-android" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
