250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드
- 앱
- 테스트
- appbar
- viewmodel
- CustomScrollView
- activity
- scroll
- Dialog
- ScrollView
- Kotlin
- intent
- 앱바
- TEST
- binding
- data
- DART
- drift
- tabbar
- Navigation
- Button
- LifeCycle
- textview
- Flutter
- Compose
- Coroutines
- textfield
- android
- 계측
- livedata
Archives
- Today
- Total
Study Record
[Flutter] 앱 이름 바꾸기 (app name) 본문
728x90
🎁 android 에서 앱 이름 변경하기
안드로이드에서는 android/app/src/main/AndroidManifest.xml 파일의 android:label 에 앱 이름을 적으면 된다.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vocabulary.japanese_vocabulary">
<application
android:label="앱 이름"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon">
...</application>
</manifest>
🎁 IOS 에서 앱 이름 변경하기
IOS 에서는 ios/Runner/Info.plist 파일에 CFBundleDisplayName 의 값으로 앱 이름을 입력해 준다.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
...
<key>CFBundleDisplayName</key>
<string>앱 이름</string>
...
</dict>
</plist>
728x90
'Flutter' 카테고리의 다른 글
[Flutter] Debug 혹은 Release 인지 판단하는 방법 (0) | 2023.05.20 |
---|---|
[Flutter] 뒤로 가기(back press) 버튼 컨트롤 (WillPopScope) (0) | 2023.04.24 |
[Flutter] Dialog (다이얼로그), 모서리가 둥근 다이얼로그 (0) | 2023.04.20 |
[AndroidStudio] 자동 완성 설정하기 (Live Templates) (0) | 2023.04.14 |
[Flutter] Run start ms-settings:developers (0) | 2023.04.07 |