Advertisement
Guest User

Untitled

a guest
Oct 29th, 2016
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. jcenter()
  4. }
  5. dependencies {
  6. classpath 'org.javafxports:jfxmobile-plugin:1.1.1'
  7. }
  8. }
  9.  
  10. apply plugin: 'org.javafxports.jfxmobile'
  11.  
  12. repositories {
  13. jcenter()
  14. maven {
  15. url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
  16. }
  17. }
  18.  
  19. mainClassName = 'com.gluontestapplication.GluonTestApplication'
  20.  
  21. dependencies {
  22. compile 'com.gluonhq:charm:4.0.1'
  23. }
  24.  
  25. jfxmobile {
  26. downConfig {
  27. version = '3.0.0'
  28. plugins 'display', 'lifecycle', 'statusbar', 'storage'
  29. }
  30. android {
  31. manifest = 'src/android/AndroidManifest.xml'
  32. androidSdk = 'C:/Users/Kamil/AppData/Local/Android/Sdk'
  33. }
  34. ios {
  35. infoPList = file('src/ios/Default-Info.plist')
  36. forceLinkClasses = [
  37. 'com.gluonhq.**.*',
  38. 'javax.annotations.**.*',
  39. 'javax.inject.**.*',
  40. 'javax.json.**.*',
  41. 'org.glassfish.json.**.*'
  42. ]
  43. }
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement