Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

coding etude

[fastlane_android] upload 후 play store console에 라이브러리에 표시 안되는 상황 본문

Flutter(Dart)

[fastlane_android] upload 후 play store console에 라이브러리에 표시 안되는 상황

코코리니 2024. 12. 14. 01:40

fluter : 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는 "../"으로 시작 해야 된다.....-_-

 

끝.