-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
想咨询android端的问题 #18
Comments
minijvm 有两种适配android的方式, 第一种,是直接把minijvm作为一个android App, 打包后可以直接运行,这个app自带图形界面,这种只需要用android studio打开 /mobile/androidapp就可以了,这时只需要开发一个继承于org.mini.apploader.GApplication的图形应用,直接在minijvm的图形界面安装你开发的图形应用jar即可.这个应用如果有库,只需要在打包时把jar库放在应用jar文件根下的lib目录中 如果有自己的jar库可以放在 /mobile/assets/resfiles下,需要修改一下/mobile/c/glfmapp/main.c 在 另一种是你有自己的app 已经开发了很多别的功能,把这个minijvm作为一个native模块使用(仅使用/minijvm/c里面的代码,使用/minijvm/java作为运行时jar基本库), 编译进你自己的.so中, 你需要写一个简单的jni接口来启动这个minijvm,但是这个作为模块的minijvm,无法使用图形界面, 因为minijvm使用opengl es3.0作为图形界面的基础, 而这个opengles图形界面只能用c语言创建. 一个简单的例子,未经测试.
|
我的目的是想在data/data/xxx/files目录下放入.jar文件,然后通过miniJVM来执行改.jar文件中的类。
android端要怎么做
The text was updated successfully, but these errors were encountered: