zoukankan      html  css  js  c++  java
  • 将cantk runtime嵌入到现有的APP中

    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

  • 相关阅读:
    MMU_段式映射
    MMU段式映射(VA -> PA)过程分析
    NOR FLASH驱动程序
    PCB上 如何显示 汉字
    poj1273 Drainage Ditches
    poj2349 Arctic Network
    poj3660 Cow Contest
    poj3259 Wormholes
    poj3159 Candies
    poj1011 Sticks
  • 原文地址:https://www.cnblogs.com/zhangyunlin/p/6167339.html
Copyright © 2011-2022 走看看