Skip to content

Commit

Permalink
Splitting, dexing, repacking, making permissions, checking, removing …
Browse files Browse the repository at this point in the history
…and pushing of scala library as a shared library to the rotted device now works as intended.
  • Loading branch information
ioreskovic committed Aug 2, 2012
1 parent c915d35 commit 868b07e
Show file tree
Hide file tree
Showing 2 changed files with 378 additions and 198 deletions.
25 changes: 24 additions & 1 deletion src/main/scala/AndroidKeys.scala
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,35 @@ object AndroidKeys {
val devUninstallDevice = TaskKey[Unit]("dev-uninstall-device")

/**
* Task Keys for installing, uninstalling and checking the version of Scala library on rooted phones
* Keys for installing, uninstalling and checking the version of Scala library on rooted phones
*/
val rootScalaInstall = TaskKey[Unit]("root-scala-install")
val rootScalaUninstall = TaskKey[Unit]("root-scala-uninstall")
val rootScalaVersion = TaskKey[Seq[String]]("root-scala-version")
val rootScalaLibrarySplit = TaskKey[Unit]("root-scala-library-split")

val rootScalaLibraryDex = TaskKey[Unit]("root-scala-library-dex")
val rootScalaLibraryRepack = TaskKey[Unit]("root-scala-library-repack")
val rootScalaLibraryAllow = TaskKey[Unit]("root-scala-library-allow")
val rootScalaCreateDirectories = TaskKey[Unit]("root-scala-create-directories")

// val mainPackage = SettingKey[String]("main-package")
// val homeDirectory = SettingKey[File]("home-directory")
// val scalaFolder = SettingKey[File]("scala-folder")
// val scalaLibraryFile = SettingKey[File]("scala-library-file")
// val scalaJarsDirectory = SettingKey[File]("scala-jars-directory")
// val scalaDexsDirectory = SettingKey[File]("scala-dexs-directory")
// val scalaXmlsDirectory = SettingKey[File]("scala-xmls-directory")
// val scalaLibsDirectory = SettingKey[File]("scala-libs-directory")

val mainPackage = TaskKey[String]("main-package")
val homeDirectory = TaskKey[File]("home-directory")
val scalaFolder = TaskKey[File]("scala-folder")
val scalaLibraryFile = TaskKey[File]("scala-library-file")
val scalaJarsDirectory = TaskKey[File]("scala-jars-directory")
val scalaDexsDirectory = TaskKey[File]("scala-dexs-directory")
val scalaXmlsDirectory = TaskKey[File]("scala-xmls-directory")
val scalaLibsDirectory = TaskKey[File]("scala-libs-directory")

/**
* Composite keys used in AndroidFastInstall
Expand Down
Loading

0 comments on commit 868b07e

Please sign in to comment.