coding etude
[fastlane_android] upload 후 play store console에 라이브러리에 표시 안되는 상황 본문
Flutter(Dart)
[fastlane_android] upload 후 play store console에 라이브러리에 표시 안되는 상황
코코리니 2024. 12. 14. 01:40fluter : 3.22.2 stable
fastlane: 2.226.0
upload_to_play_store(
json_key: "play-store-api.json",
package_name: "com.project",
track: "internal",
release_status: "draft",
skip_upload_changelogs: true,
skip_upload_metadata: true,
skip_upload_images: true
)
위 예시 처럼 내부 테스트로 업로드 시 fastlane 에서는 업로드 성공 메시지가 뜨지만
막상 play store consloe 에서 새로운 버전을 등록하려고 하면 라이브러리에 업로드가 되지 않는 문제가 발생 했다.
에러가 아닌 상황이기 때문에 구글링 했을 때, 비슷한 케이스는 여럿 있었지만 해결 방법은 명확하지 않았다.
1. fastlane 에서 업로드 했지만 console에서 늦게 업로드 될 수 있다.
2. fastlane 에서 성공 메시지는 나왔지만 실제 오류가 났을 가능 성이 있다.
3. fastlane supply --verbose를 사용하여 console와 강제 동기화를 진행 해라.
하지만 예시 코드에서 가장 중요한게 빠져있었다.
apk, aab의 path가 빠져 있는것...
aab: "aab file path" or apk: "apk file path" 를 추가 해주면 바로 해결 된다.
그리고 참고로 path는 "../"으로 시작 해야 된다.....-_-
끝.
'Flutter(Dart)' 카테고리의 다른 글
[fastlane_android] Google Api Error: badRequest: Only releases with status draft may be created on draft app. (0) | 2024.12.14 |
---|---|
[fastlane_android] supply에 대해서 알아보자. (0) | 2024.12.14 |
[Flutter] flutter_bloc 사용해보기 (0) | 2024.09.10 |
[flutter ios] webview 사용 시 ios Simulator 키보드 안나오는 현상 (0) | 2024.05.27 |
[flutter] webview 에서 웹페이지가 불안정한 문제 (0) | 2024.05.27 |