美文网首页
记录android项目接入u3d的过程

记录android项目接入u3d的过程

作者: 小沈新手 | 来源:发表于2020-07-09 15:04 被阅读0次

第一步:从u3d开发人员中获得module,然后倒入module

在build.gradle(Module: app)文件添加implementation project(path:':unityLibrary')、

ndk{

    abiFilters'armeabi-v7a'

}

问题一、继承UnityPlayerActivity出现报错cannot access IUnityPlayerLifecycleEvents class file for 

解决办法:

1、打开settings.gradle文件添加

2、打开build.gradle(Module: app)文件添加

3.打开build.gradle(Project)文件添加

最后编译一下,问题解决

问题二、进入UnityActivity出现报错Unable to start activity ComponentInfo{com.peijia.unitytestactivity/com.unity3d.player.UnityPlayerActivity}: android.content.res.Resources$NotFoundException: String resource ID #0x0

解决办法:

打开app->res->values->strings.xml文件添加

<string name="game_view_content_description">Game view</string>

相关文章

网友评论

      本文标题:记录android项目接入u3d的过程

      本文链接:https://www.haomeiwen.com/subject/amzjcktx.html