플러터로 개발하다보면 AOS의 PackageName과 IOS의 BundleIdentifier 정보를 확인해야 할때가 있는데요.
까먹지 않기 위해 정리해놓습니다.
Android
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.octoverse.appname">
iOS
1. ios/Runner/Info.plist
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
2. ios/Runner.xcodeproj/project.pbxproj
PRODUCT_BUNDLE_IDENTIFIER = com.octoverse.appname;
같이 보면 좋은글 - Flutter 앱 이름 변경
https://kjmhercules.tistory.com/26
[해결방법] Flutter App 이름 변경
플러터로 만든 앱 이름을 변경해야 할 때가 있습니다. 간단하지만 자주 사용하지 않다보니 까먹기 마련입니다. 딱!! 두 가지만 기억하면 됩니다. 1. Android에서 보이는 앱 이름 : AndroidManifest.xml 파
kjmhercules.tistory.com
728x90
'Development > Flutter' 카테고리의 다른 글
[해결방법] BGTaskSchedulerPermittedIdentifiers 오류, iOS ERROR ITMS-90771 (0) | 2023.04.29 |
---|---|
[해결방법] MapBox error, FusedLocationProviderClient (2) | 2023.04.12 |
Flutter에서 MapBox 사용하기, Flutter with MapBox (0) | 2023.03.31 |
[해결방법] Flutter 오류 - 인텐트 필터를 포함하되 'android:exported' 속성... (0) | 2023.03.30 |
[해결방법] redefinition of module 'Firebase' (0) | 2023.03.29 |