2016-07-23 2 views

答えて

1

を(イム現在日食を使用して):私は私の私のクッキージャーを取ったにsqliteのジャーとのdllのを追加するため

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') 
     } 
} 

原料のこの組み合わせは動作します。

+0

私は別の方法を考え出しました。私は別のプログラムを持っています。それはサーバーを実行し、そのサーバーにmodが接続し、サーバーはrxtx経由でarduinoに中継します。 terraria、csgo、arma、私自身のゲーム、ケルバルスペースプログラム、戦争雷などで簡単に動作させることができます。 – Jeremiah

関連する問題