본문 바로가기
반응형

방법55

안드로이드 앱 버전 업데이트 방법 (flutter) [flutter] 출시한 앱 버전 업데이트 방법 pubspec.yaml 프로젝트에 들어있는 pubspec.yaml의 아래 version을 변경해준다. version 형식은 버전이름+버전코드 형식이다. 따라서 버전 업을 할때마다 버전이름도 증가하고, 버전코드도 더 큰 값으로 올라가야한다. build.gradle 위와 원리는 같다. 버전코드와 버전이름을 pubspec.yaml와 같은 숫자로 증가해서 바꿔준다. local.properties 이제 마지막이다. local.properties의 버전이름과 버전코드를 동일하게 바꿔준다. 새 버전 등록 변경이 모두 끝났다면 새로 앱을 빌드한다. 그리고 구글 플레이 콘솔에 접속하여 새로 빌드한 앱을 아래 사진의 App Bundle에 드롭하고 저장하면 끝!! 2022. 6. 5.
[flutter] How to fix the error "'WhereIterable<Products>' is not a subtype of type 'List<Products>'" 문제 상황 flutter 앱 실행 중에 아래와 같은 에러메시지가 표시되고 빌드에 실패합니다. How to fix the error "'WhereIterable' is not a subtype of type 'List'" 해결 방법 아래와 같이 리스트로 변환하여 복사합니다. List filter(String title) { return products.where((element) => element.category == title).toList(); } https://www.google.com/search?q=Unhandled+Exception%3A+type+%27WhereIterable%3CStore%3E%27+is+not+a+subtype+of+type+%27List&rlz=1C1IBEF_koKR957.. 2022. 1. 25.
[flutter] RangeError (index): Invalid value: Not in inclusive range 0..1: 2 문제 상황 배열에 접근하고자 했으나, 아래와 같은 에러메시지가 발생합니다. RangeError (index): Invalid value: Not in inclusive range 0..1: 2 해결 방법 접근할 때 문제가 되었던 배열의 크기보다 작은 인덱스 값으로만 접근해야 합니다. https://www.google.com/search?q=RangeError+(index)%3A+Invalid+value%3A+Not+in+inclusive+range+0..1%3A+2&rlz=1C1IBEF_koKR957KR957&oq=RangeError+(index)%3A+Invalid+value%3A+Not+in+inclusive+range+0..1%3A+2&aqs=chrome..69i57.553j0j7&sourceid=.. 2022. 1. 24.
[flutter][firebase] How to sign up/login/logout/leave membership for Google (sample code) (구글 회원가입/로그인/로그아웃/회원탈퇴 방법 (샘플코드)) [flutter][firebase]How to sign up/login/logout/leave membership for Google (sample code)(구글 회원가입/로그인/로그아웃/회원탈퇴 방법 (샘플코드)) 구글 소셜로그인을 이용하면 플러터에서도 쉽게 회원관리 기능을 구현할 수 있습니다.  구글에서 제공하는 가이드 (flutter dart 기준이 아니라 조금 더 구글링이 필요했음)https://firebase.google.com/docs/auth/unity/manage-users?hl=ko  Firebase에서 사용자 관리하기  |  Firebase DocumentationCatch up on everthing we announced at this year's Firebase Summit. L.. 2021. 11. 30.
반응형