일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flutter_dotenv
- undefined name
- .dio
- exception
- tflite_flutter
- AI
- permissiondeniedexception
- withopacity
- pub.dev
- 채팅 메시지 정렬
- exception caught by image resource service
- information needed
- flutter doctor -v
- youtube_player_flutter
- providernotfoundexception
- app stroe connect guideline
- guideline 1.5
- get_it
- flutter_secure_storage
- dart sdk version upgrade
- 에러
- appstore connect guideline
- Guideline 5.1.1
- app store connect guideline
- app completeness
- guideline 4.3(a)
- appstroe connect guideline
- infinity or nan toint
- 플러터
- Flutter
- Today
- Total
목록분류 전체보기 (48)
min_chan님의 블로그

리젝사유Guideline 4.8 - Design - Sign in with AppleYour app uses a third-party login service, but does not offer Sign in with Apple. Apps that use a third-party login service for account authentication need to offer Sign in with Apple to users as an equivalent option to provide the sign-in experience App Store users expect.Next StepsPlease revise your app to offer Sign in with Apple as an equivalent..

null safety란?null이란 값이 존재하지 않음을 의미한다.가장 많은 런타임에러가 발생하는 이유중 하나는 null때문에 발생한다. 그 문제를 해결하기 위해 null safety를 적용하는 것이다.// null safety가 적용된 코드 안에서는 name, b 변수안에 null값을 넣어줄 수 없다.String name = getFileName(); final b = Foo(); null값을 지정해주는 방법해당 변수뒤에 ?를 넣어주면 null값을 넣어줄 수 있다.null값이 아님을 표현하는 방법첫번째 에러: List의 첫번째 아이템은 2인걸 알 수 있으나, List는 널이 가능한 값이므로 변수 b에 넣어줄 수 없다는 에러가 발생했다.두번째 에러: couldReturnNullButDoesnt()가 nu..

리젝 사유Guideline 2.3.3 - Performance - Accurate MetadataWe noticed that your screenshots do not sufficiently show your app in use. Specifically, your iPad Pro(2nd Gen) and iPad Pro (6th Gen)screenshots show an iPhone image that has been modified or stretched to appear to be an iPad image.To help users understand your app’s functionality and value, your screenshots should highlight your app's core ..

서버구축을 위해 open api 연습 중 다음과 같은 에러가 발생하였다. 에러 코드 & 사진index.js// node.jsvar express = require("express");var app = express;app.get("/", (req, res) => { res.json({ "key":"Value" })});app.listen(3000,(req, res) => { console.log(3000);});해결 코드 & 사진해당 코드로 변경해준다.var app = require('express')();var app = require('express')();app.get("/", (req, res) => { res.json({ "key":"Value" ..

Google Play Console에 앱을 출시하는 과정에서 앱 서명키 인증서 및 업로드 키 인증서를 API 제공업체에 키를 등록해야 한다.SHA-1 -> 키해시 생성terminalecho 자신의 SHA-1 인증서 지문 | xxd -r -p | openssl base64위와 같이 입력하면 아래 스크린샷처럼 키해시가 생성된다.해당 키해시를 API 제공업체에 등록하면 끝~추가 사항[xxd] : 바이너리 데이터를 헥사 덤프 형태로 변환하거나 그 반대로 변환하는 유틸리티[-r] : 헥사 덤프를 원래의 바이너리 데이터로 변환하는 역할[-p] : 입력을 일반적인 헥사코드로 인식[openssl base64] : 바이너리 데이터를 Base64로 인코딩

리젝 사유Guideline 2.1 - Information NeededThe app uses the AppTrackingTransparency framework, but we are unable to locate the App Tracking Transparency permission request when reviewed on iOS 18.2.1. Next Steps Explain where we can find the App Tracking Transparency permission request in the app. The request should appear before any data is collected that could be used to track the user. If App Tra..

리젝 사유Guideline 4.2 - Design - Minimum Functionality The usefulness of the app is still limited by the minimal functionality it currently provides. Specifically, the app does not provide sufficient content and features to be useful, unique, and "app-like." Apps should provide valuable utility or entertainment, draw people in by offering compelling capabilities or content, or enable people to do s..

1. 문제오..오..오...늘 GetX를 사용하던 중 제목과 같은 에러가 발생하였다. stack overflow를 찾아본 결과 페이지 이동 시 컨트롤러가 dispose된 문제라고 생각했다. 2. 해결 방법#1 - lazyPut을 fenix: true와 함께 사용하여 dispose된 후에도 컨트롤러 복원 가능Get.lazyPut(() => MyController(), fenix: true);#2 - SchedulerBinding.instance.addPostFrameCallback을 사용하여 현재 프레임이 렌더링된 후에 특정 작업을 수행하도록 만들어준다. @override void initState() { super.initState(); SchedulerBinding.instance.add..

에러 메시지원인로컬 변경 사항을 보호하기 위해 flutter upgrade 명령어가 먹질 않는다.해결 방법force 명령어를 사용하여 강제로 업그레이드flutter upgrade --force

플러터 업그레이드를 하고 난 뒤로 flutter doctor -v를 쳐보니 에러가 발생하였다.에러 메시지 & 사진✗ Unable to find bundled Java version.해결 방법 & 사진cmd에 다음과 같이 입력입력 후 다시 flutter doctor -v를 해보면 에러 메시지가 사라진 것을 볼 수 있다 ^^* ❯ cd /Applications/Android\ Studio.app/Contents❯ ln -s jbr jre