2016-07-23 40 views

回答

1

在你的build.gradle:

dependencies { 
    // create a directory called libs in the directory where the build.gradle is 
    compile fileTree(dir: 'libs', include: '*.jar') 
} 
jar { 
    // make in the directory where the build.gradle is a native folder 
    // and put your dll's there. 
    from('native') { 
     into('org/sqlite/native') 
     } 
    } 
processResources 
    { 
    //... add this below what's already there under process resources. 
    copy { 
      from('/native') 
      into('/org/sqlite/native') 
     } 
} 

這東西組合對我的作品的sqlite的罐子和DLL的添加到我的誰拿我的餅乾罐子。

+0

非常感謝,但可悲的是我已經找到了另一種方式,我有另一個程序,它運行在服務器和國防部連接到該服務器,並且服務器然後轉發給通過RXTX Arduino的,我很多喜歡它,因爲我可以很容易與terraria,csgo,arma,我自己的遊戲,kerbal space program,war thunder等一起工作。 – Jeremiah