유니티/오류

Unity(유니티)_Please specify a namespace for the generated R and BuildConfig classes via android.namespace in the module's build.gradle file like so:

robbercat 2024. 3. 8. 12:55

오류 내용 : 

Please specify a namespace for the generated R and BuildConfig classes via android.namespace in the module's build.gradle file like so:

   android {
               namespace 'com.example.namespace'
           }

 

이건 위에서 알려준데로

 

"launcherTemplate"

파일에
<namespace 'com.example.namespace'>
"android " 안에 넣으면 된다.

 

   android {
               namespace 'com.example.namespace'
           }