유니티

앱 이름 한글 설정

잼잼재미 2024. 4. 19. 08:04

 

Product Name을 한글로 입력하면 빌드 시, 오류가 난다. 앱 이름을 한글로 설정하기 위해서는 앱 이름을 국가별로 설정해야 한다.

 

 

설정 방법


1. 폴더 생성

 

다음 경로에 폴더 생성

 

 

2. 파일 생성

 

메모장에서 파일을 생성한다.

 

project.properties

target=android-9
android.library=true

 

 

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>

 

 

strings.xml

<?xml version="1.0" encoding="UTF-8"?>
<resources>
  <string name="app_name">나홀로 성 지키기</string>
</resources>

 

 

3. 파일 넣기

 

'유니티' 카테고리의 다른 글

조이스틱 구현  (0) 2024.05.03
구글 플레이 업로드  (0) 2024.04.19
Json 데이터 저장  (0) 2024.04.03
화면 깜빡이기  (0) 2024.03.27
2D 화살 구현 (포물선 운동)  (0) 2024.03.25