본문 바로가기
개발/Flutter

flutter how to know recent version

by dev_caleb 2022. 11. 26.
728x90

신규버전 정보를 알려주기

 

https://stackoverflow.com/questions/58057555/flutter-how-to-check-is-the-app-has-a-new-version

 

Flutter - How to check is the app has a new version?

I create an app with Flutter. I need to force users to update the app when I upload a new version. I try this package, but I think that it doesn´t work. In the documentation, we can read that we can

stackoverflow.com

 

기존에는 remote config를 썼었는데 최신 업데이트가 마켓에 올라오는 정확한 타이밍을 맞춰서 remote config 값을 꾸준히 관리해줘야하기 때문에 번거롭기도 하고 어려운 과정이었다.

 

그래서 pub.dev 에서 new_version을 사용하기로 했다.

각각의 앱스토어에는 upload 된 버전 정보가 올라와있는데 그 정보를 크롤링해서 가져오는 듯 했다.

 

https://pub.dev/packages/new_version/example

 

new_version | Flutter Package

Check if your user has the most recent version of your Flutter app.

pub.dev

문제는 여기서 하라고 하는대로 했는데도 null 값이 나온다. 

issue를 찾아봤을 때는 안드로이드으로 돌리면 영어 쪽 말고는 store로 가져오는 정보가 부족한 것 같다.

 

ㅠㅠ 일단은 포기하고 remoteConfig로 조절해야겠다.

728x90

'개발 > Flutter' 카테고리의 다른 글

How to save Color data in flutter  (0) 2022.12.01
Freezed different key name, default value  (0) 2022.11.30
Flutter hive 원하는 model 넣기  (0) 2022.11.25
flutter hive unknown type error  (2) 2022.11.25
flutter library fork from GitHub  (0) 2022.11.22