Duplicate files copied in APK META-INF/INDEX.LIST using Gluon

后端 未结 1 918
刺人心
刺人心 2021-01-14 17:43

I\'m deloping a code in neatbeans on javafx with the latest gluon version, and when I run it in my laptop the program doesnt have problems, but when I try run in android

相关标签:
1条回答
  • 2021-01-14 18:09

    With the list of dependencies you have posted, this works for me:

    jfxmobile {
        android {    
            packagingOptions {
                exclude 'META-INF/LICENSE'
                exclude 'META-INF/LICENSE.txt'
                exclude 'META-INF/NOTICE'
                exclude 'META-INF/NOTICE.txt'    
            }   
        }
    }
    
    0 讨论(0)
提交回复
热议问题