您好,登錄后才能下訂單哦!
1,先取cantk-runtime-demos到本地:
git clone https://github.com/drawapp8/cantk-runtime-demos
2,創建一個Android App(或者拷貝現有的項目):
cd cantk-runtime-demos android create project -n MyApp -k com.demo -a MyAppActivity -p ./MyApp -t cd MyApp
3,合并phonegap和cantk-runtime相關文件。
GAMERUNNER=../GameRunner/platforms/android mkdir -p assets cp -rvf $GAMERUNNER/libs . cp -rvf $GAMERUNNER/src/* src/. cp -arvf $GAMERUNNER/res/xml res cp -arvf $GAMERUNNER/assets/www assets/ cp -rfv $GAMERUNNER/CordovaLib/src/* src/. rm -rf assets/www/cordova-js-src/
4,修改AndroidManifest.xml,增加activity
<activity android:name="com.tangide.GameRunnerActivity" android:label="@string/app_name"> </activity>
5,啟動GameRunnerActivity
import com.tangide.GameRunnerActivity; ... Intent intent = new Intent(); Bundle bundle = new Bundle(); intent.setClass(EmbedDemoActivity.this, GameRunnerActivity.class); bundle.putString("url", "file:///mnt/sdcard-ext/cantk-rt-root/game1/index.html"); intent.putExtras(bundle); startActivity(intent);
(請把游戲放在SDCARD中,路徑與上面指定的URL一致, EmbedDemo/examples/里有測試游戲)
6,編譯安裝
ant debug adb install -r bin/MyApp-debug.apk
如果編譯不過,請修改project.properties:
target=android-21
示例:https://github.com/drawapp8/cantk-runtime-demos/tree/master/EmbedDemo
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,謝謝大家對億速云的支持。如果你想了解更多相關內容請查看下面相關鏈接
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。