项目升级2021后打包出现报错:
Exception: OBSOLETE - Providing Android resources in Assets/Plugins/Android/res was removed, please move your resources to an AAR or an Android Library. See "AAR plug-ins and Android Libraries" section of the Manual for more details.
百度了一下是Unity2021不再支持在安卓Build的时候直接存在Android/res文件夹
解决方案最佳是去自己创建aar插件丢进去, 可惜对于我来说过于麻烦.
找到另一种相对简单的解决方案如下:
在Plugins/Android文件夹下创建CustomAndroidResource.androidlib文件夹
把原来Plugins/Android文件夹下的res文件夹移到CustomAndroidResource.androidlib文件夹下
在CustomAndroidResource.androidlib文件夹下创建两个文件,文件名和内容分别如下
AndroidManifest.xml
- package="custom.android.res"
- android:versionCode="1"
- android:versionName="1.0">
project.properties
- target=android-9
- android.library=true
4.最终如下,重新打包完成
注:本文转载自blog.csdn.net的Huil的文章"https://blog.csdn.net/qq_28784217/article/details/128863508"。版权归原作者所有,此博客不拥有其著作权,亦不承担相应法律责任。如有侵权,请联系我们删除。
评论记录:
回复评论: