[App 이름 변경하기]
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.meta.code">
<application
android:label="메타"
android:icon="@mipmap/ic_launcher">
플러터로 만든 앱 이름을 변경해야 할 때가 있습니다.
간단하지만 자주 사용하지 않다보니 까먹기 마련입니다.
딱!! 두 가지만 기억하면 됩니다.
1. Android에서 보이는 앱 이름
: AndroidManifest.xml 파일 label 수정
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.meta.code">
<application
android:label="메타"
android:icon="@mipmap/ic_launcher">
. . .
2. iOS에서 보이는 앱 이름
: Info.plist 파일의 CFBundleName 수정
<?xml version="1.0" encoding="UTF-8"?>
http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
. . .
<key>CFBundleName</key>
<string>메타코드</string>
. . .
[PackageName 변경하기]
1. Android
- androidmanifest.xml 3종세트 변경
: /android/app/src/main/, /android/app/src/debug/, /android/app/src/profile/
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="{변경할 PackageName}">
<application
android:label="메타"
android:icon="@mipmap/ic_launcher">
- /android/app/buildgradle 파일 변경
defaultConfig {
applicationId "변경할 PackageName"
. . .
}
- /android/app/src/main/kotlin/com/example/test/MainActivity.kt 파일 변경 (폴더 이름도 같이 수정)
package {변경할 PackageName}
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
. . .
}
2. iOS
- /ios/Runner.xcodeproj/project.pbxproj 변경
. . .
PRODUCT_BUNDLE_IDENTIFIER = {변경할 PackageName};
. . .
[Flutter Library 추천]
App 이름과 PackageName을 쉽게 변경해주는 라이브러리가 있어 추천드립니다.
https://pub.dev/packages/rename
1. 설치방법
flutter pub global activate rename
2. 사용방법
flutter pub global run rename --bundleId com.onatcipli.networkUpp
flutter pub global run rename --appname "Network Upp"
끝
728x90
'Development > Flutter' 카테고리의 다른 글
[해결방법] iOS 버전 차이로 인한 경고 - The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 11.0 to 16.2.99. (0) | 2023.02.18 |
---|---|
[팁&노하우] API 중복 호출시 async&await로 동작하기 (0) | 2023.02.17 |
Flutter 앱에 Map 기능 추가하기 (MapBox, GoolgeMap) (0) | 2023.02.01 |
GetX 어디까지 써봤나요? (0) | 2022.11.28 |
Flutter 3.3 릴리즈 관련 링크 (0) | 2022.11.18 |