compile and build gluon mobile app for desktop

前端 未结 2 1225
后悔当初
后悔当初 2020-12-12 01:15

we have

desktopRuntime \'org.xerial:sqlite-jdbc:3.15.1\'

in gradle file. i build project but my zip file dont have this file in lib folder

2条回答
  •  被撕碎了的回忆
    2020-12-12 01:38

    Try next steps:
    

    1.

        dependencies {
          compile 'org.xerial:sqlite-jdbc:3.15.1'
          runtime 'org.xerial:sqlite-jdbc:3.15.1'
        }
    
    1. Go to "Files" tab in NetBeans IDE -> your_project -> build -> libs and here add your lib some as sqlite-jdbc.jar

提交回复
热议问题