728x90
728x90
SMALL
유니티로 Android 앱을 개발할 때 아래의 오류를 맞닥뜨렸다..
The option 'android.enableR8' is deprecated and should not be used anymore.
해당 오류의 해결방법은 다음과 같다!
해결 방법
- gradleTemplate.properties 수정
1. Edit > Project Setting > Player > Publishing Settings
2. Custom Gradle Properties Templete 에 체크
3. 프로젝트 폴더 > Assets > Plugins > Android 폴더 내
4. gradleTemplate.properties 파일 열기
5. 아래와 같이 작성
android.enableD8 = true
android.enableR8 = false
혹시 이걸로 해결이 안된다면 추가적인 절차가 있으나,
나의 경우에는 충분히 해결되었다!
추가적인 절차는 아래 링크에 잘 작성해주신 분이 계신다 :)
728x90
728x90
LIST
'EXPERIENCE > Unity' 카테고리의 다른 글
[Unity/Android] 빌드 멈춤 현상 Building native binary with IL2CPP ERROR 해결방법 (0) | 2022.12.26 |
---|---|
[Unity/Android] AndroidJavaException: java.lang.ClassNotFoundException ERROR 해결방법 (with. 난독화) (0) | 2022.12.26 |
[Unity/Android] 유니티 버전에 맞는 Gradle 확인하기 (0) | 2022.12.23 |
[Unity] Corner Rounding 이미지 테두리에 라운딩 주기 (0) | 2022.12.22 |
[Unity] 하위 RectTransform Layout Update가 필요할 때 (0) | 2022.12.22 |