@@ -6,7 +6,7 @@ import sbtassembly.AssemblyPlugin
6
6
import sbtassembly .AssemblyPlugin .autoImport ._
7
7
import sbt .complete .Parsers ._
8
8
9
- object JavaFXMobilePlugin extends AutoPlugin {
9
+ object JavaFXMobilePlugin extends AutoPlugin {
10
10
11
11
object autoImport {
12
12
lazy val createGradleProject = taskKey[File ] (" Produces a gradle project, which uses the JavaFX-Mobile plugin. The result is the folder of the project." )
@@ -15,6 +15,7 @@ object JavaFXMobilePlugin extends AutoPlugin{
15
15
lazy val gradleBuildContent = taskKey[String ](" The content of the build.gradle file." )
16
16
lazy val javafx_mobile_version = taskKey[String ](" Version of the javafx-mobile-plugin" )
17
17
lazy val androidApplicationPackage = taskKey[String ](" The application package of the android application." )
18
+ lazy val androidManifest = taskKey[String ](" The Android-Manifest file." )
18
19
lazy val ios_forceLinkClasses = taskKey[String ](" forceLinkClasses in the gradle project" )
19
20
lazy val iosSignIdentity = taskKey[Option [String ]](" The SignIdentity used to build the iOS-App" )
20
21
lazy val iosProvisioningProfile = taskKey[Option [String ]](" The ProvisioningProfile used to build the iOS-App" )
@@ -27,7 +28,7 @@ object JavaFXMobilePlugin extends AutoPlugin{
27
28
val utf8 = java.nio.charset.Charset .forName(" UTF-8" )
28
29
29
30
override def projectSettings = List (
30
- javafx_mobile_version := " org.javafxports:jfxmobile-plugin:1.0.0-b9 " ,
31
+ javafx_mobile_version := " org.javafxports:jfxmobile-plugin:1.0.0-b10 " ,
31
32
ios_forceLinkClasses := " ['ensemble.**.*']" ,
32
33
iosSignIdentity := None ,
33
34
iosProvisioningProfile := None ,
@@ -101,6 +102,8 @@ jfxmobile {
101
102
}
102
103
android {
103
104
applicationPackage = ' ${androidApplicationPackage.value}'
105
+ resDirectory = '../../src/main/res'
106
+ manifest = '../../src/main/AndroidManifest.xml'
104
107
}
105
108
}
106
109
"""
0 commit comments