Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buildscript {
- repositories {
- jcenter()
- }
- dependencies {
- classpath 'org.javafxports:jfxmobile-plugin:1.1.1'
- }
- }
- apply plugin: 'org.javafxports.jfxmobile'
- repositories {
- jcenter()
- maven {
- url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
- }
- }
- mainClassName = 'com.gluontestapplication.GluonTestApplication'
- dependencies {
- compile 'com.gluonhq:charm:4.0.1'
- }
- jfxmobile {
- downConfig {
- version = '3.0.0'
- plugins 'display', 'lifecycle', 'statusbar', 'storage'
- }
- android {
- manifest = 'src/android/AndroidManifest.xml'
- androidSdk = 'C:/Users/Kamil/AppData/Local/Android/Sdk'
- }
- ios {
- infoPList = file('src/ios/Default-Info.plist')
- forceLinkClasses = [
- 'com.gluonhq.**.*',
- 'javax.annotations.**.*',
- 'javax.inject.**.*',
- 'javax.json.**.*',
- 'org.glassfish.json.**.*'
- ]
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement