본문 바로가기
728x90

Error4

flutter multidex error android https://islet4you.tistory.com/entry/Flutter-Android-MultiDex-해결하기 [Flutter] Android MultiDex 해결하기 매번 나오는 오류인데 기록을 하지 않아서 기억하기 위해서 기록을 합니다. build.gradle 에 defaultConfig 를 설정해주셔야합니다. defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android. islet4you.tistory.com 해당 페이지 대로 하니 성공! 2023. 6. 22.
sublist 오류 막기 import 'dart:math'; void main() { var a = [1,2,3,4,5,6]; var c = [1]; var b= a.sublist(0,2); var d= c.sublist(0,2); 다음과 같은 식은 오류가 발생한다. 왜냐? c는 2보다 작은 데 사이즈를 2크기로 잘라서 그렇다. 그렇다면, 해결해주려면 어떻게 해야할까? 이렇게 해결해 줄 수 있다! var d= c.sublist(0,min(2, 0)); 2022. 12. 30.
flutter open_file library -> REQUEST_INSTALL_PACKAGES error when I try to publish my flutter app. I receive fail message like below screenshot. in flutter project, I searched "REQUEST_INSTALL_PACKAGES" and i found it was used in 'open_file' library. https://stackoverflow.com/questions/73809824/request-install-packages REQUEST_INSTALL_PACKAGES Status: Approved with Issues - Further Action Required We found issues with your app. You need to review and take.. 2022. 10. 30.
getX obx bottom tabbar error I found error when use (In appbar)bottom : tabbar, it occur not change obx body objects. (Sometimes tabindex change not work) I move tabbar to body, it solved. I think it is need to fix by flutter team. 2022. 9. 27.
728x90