Hi All,
trying to use scala plugin to create an android app. However android
cannot find scala.ScalaOjbect
because it  is not packaged into .apk

How do I get scala.ScalaObject packaged into the .apk?

Thanks for any help!
Sonny

My build.gradle script is below:

apply plugin: 'android'
apply plugin: 'scala'
version = "1.0.0"
proguard.enabled = true


buildscript {
  repositories {
    mavenRepo(urls: 'http://jvoegele.com/maven2/')
  }
  dependencies {
    classpath 'com.jvoegele.gradle.plugins:android-plugin:0.9.7'
  }
}

repositories {
  mavenCentral()
}

dependencies {
  scalaTools 'org.scala-lang:scala-compiler:2.8.1'
  scalaTools 'org.scala-lang:scala-library:2.8.1'
  compile 'org.scala-lang:scala-library:2.8.1'
}

processResources {
  expand(project.properties)
}

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to