build.gradle 파일에서 앱 ID 변경한다.
- 경로: android/app/build.gradle
- defaultConfig {
applicationId "com.your_new_project_name"
...
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "net.bluelegend.tourfriend"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
// versionCode = flutter.versionCode
// versionName = flutter.versionName
versionCode = 6 // 앱의 버전 코드: 앱이 업데이트 될때마다 증가
versionName = "6" // 사용자에게 보여지는 버전 이름
}
위 화면에서 applicationId = "net.bluelegend.tourfriend" 의 값을 바꿔준다.
반응형
'프로그램 개발 > 앱 출시' 카테고리의 다른 글
구글 플레이스토어 앱 출시 매뉴얼 (0) | 2024.12.10 |
---|---|
구글 앱 출시 절차와 비공개테스트 (2) | 2024.11.28 |
구글 비공개테스트 대행 (2) | 2024.11.20 |