본문 바로가기

AppDevelopment15

Flutter 플레이스토어 오류: 앱 번들에 네이티브 코드가 포함되어 있으며 디버그 심볼을 업로드하지 않았습니다., Playstore error: App Bundle contains native code, and you've not uploaded debug symbols 질문 새로운 플러터 앱 번들을 Playstore에 출시하려고 할 때 다음 오류가 발생합니다: "This App Bundle contains native code, and you've not uploaded debug symbols. We recommend you upload a symbol file to make your crashes and ANRs easier to analyze and debug." 이를 해결할 수 있는 방법을 찾을 수 없습니다. 플러터와 앱 출시에 대해 새로운 사용자이며 조금 절망적입니다... 도움이 필요합니다. 앱/build.gradle에 "android.defaultConfig.ndk.debugSymbolLevel = 'FULL'" (1번째 줄에)을 추가하면 https://de.. 2023. 5. 12.
Flutter CircularProgressIndicator의 색상을 변경하는 방법, How to change color of CircularProgressIndicator 질문 CircularProgressIndicator의 색상을 어떻게 변경할 수 있나요? 색상 값은 Animation의 인스턴스이지만, 애니메이션의 번거로움 없이 색상을 간단하게 변경할 수 있는 방법이 있을까요? 답변 이 방법이 제게는 작동했습니다: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation(Colors.white)) 2023. 5. 10.
flutter 플러터로 빌드된 앱의 디스플레이 이름을 어떻게 변경할 수 있나요?, How can I change the app display name build with Flutter? 질문 저는 Flutter create testapp을 사용하여 앱을 만들었습니다. 이제 "testapp"에서 "My Trips Tracker"로 앱 이름을 변경하고 싶습니다. 어떻게 할 수 있을까요? AndroidManifest.xml에서 변경을 시도해 보았지만 변경되었습니다. 그러나 Flutter에서 제공하는 방법이 있을까요? 답변 안드로이드 AndroidManifest.xml을 엽니다(android/app/src/main에 위치함) // 여기에 앱 이름 입력 iOS info.plist를 엽니다(ios/Runner에 위치함) CFBundleDisplayName 앱 이름 // 여기에 앱 이름 입력 또는 앱을 중지하고 다시 실행하는 것을 잊지 마세요. 2023. 5. 8.