반응형
이전과는 다르게 이제 google playstore 에 앱을 올리려면
apk파일에서 appbundle 파일로 정책이 바뀌었다.
그래서 apk 파일은 build를 하면 되고
appbundle역시 build에서 하면 된다.
하지만 저번 포스팅에서 다룬적이 있는데(참고 포스팅 참조) flutter 2.0 부터는 null 제약조건이 들어가서 appbundle 을 만드는것이 쉽지 않다.
Error: Cannot run with sound null safety, because the following dependencies
don't support null safety:
- package:webview_flutter
For solutions, see https://dart.dev/go/unsound-null-safety
이럴때는 ide 에서가 아닌 terminal 에서 명령어로 사용하는것이 더 효과적이다.
flutter build appbundle --no-sound-null-safety
이렇게 사용하면 appbundle이 만들어진다.
참고 포스팅
https://thenicesj.tistory.com/358
반응형
'IT > Flutter' 카테고리의 다른 글
플러터 결과 미리보기(flutter_preview) (6) | 2023.01.21 |
---|---|
flutter app bundle 서명 추가하는법 (38) | 2022.10.31 |
구글 개발자 계정 만들기 (18) | 2022.10.18 |
app-release.apk 파일 생성 안될때 (3) | 2022.10.16 |
flutter 에서 webview 사용하기 (25) | 2022.10.15 |
댓글