본문 바로가기

EXPERIENCE/Unity

[Unity/Android] 'android.enableR8' is deprecated ERROR 해결 방

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

 

 

혹시 이걸로 해결이 안된다면 추가적인 절차가 있으나,

나의 경우에는 충분히 해결되었다!

추가적인 절차는 아래 링크에 잘 작성해주신 분이 계신다 :)

 

 

문제해결)Unity)The option 'android.enableR8' is deprecated and should not be used anymore.

The option 'android.enableR8' is deprecated and should not be used anymore. WARNING: The option 'android.enableR8' is deprecated and should not be used anymore. It will be removed in a future version of the Android Gradle plugin, and will no longer allow y

drehzr.tistory.com

 

 

 

 

 

 

 

 

728x90
728x90
LIST