반응형
Unity를 2021.3.9f로 업그레이드 한 후 발생한 에러입니다.
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.
해결책은 다음과 같습니다.
1. res가 있는 폴더 (Assets/Plugins/Android/)에 res.androidlib 폴더를 생성합니다.
2. res폴더를 res.androidlib로 옮깁니다.
3. AndroidManifest.xml, project.properties 파일을 메모장으로 해당 폴더에 생성한 후 다음과 같이 작성합니다.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="custom.android.res" android:versionCode="1" android:versionName="1.0">
</manifest>
project.properties
target=android-9
android.library=true
반응형
'개발공부 > 유니티' 카테고리의 다른 글
[Unity] 유니티 안드로이드 인앱 결제 (1) | 2023.06.13 |
---|---|
[Unity] 씬(Scene) 별로 화면 고정하기 (2) | 2023.02.02 |
[Unity] Deterministic compilation failed. You can disable Deterministic builds in Player Settings Error (0) | 2023.02.02 |
[Unity] 유니티에 PlayFab 연동하기 (0) | 2022.10.14 |
[Unity] 유니티에서 포톤으로 채팅 구현 (0) | 2022.10.03 |