본문 바로가기
반응형

실패4

[Android][3분 컷] 조치 필요: 앱이 Google Play 정책을 준수하지 않음 조치 필요: 앱이 Google Play 정책을 준수하지 않음 (Action required: App does not comply with Google Play policies) [Android] 3분만에 해결하기 (Solve it in 3 minutes) 앱 출시 정책 위반? 광고를 포함한 앱을 출시하는 중에 아래와 같은 구글 플레이 스토어의 앱 거부 메일을 받았다. (While launching an app with ads I received an app rejection email from the Google Play Store as shown below.) 이럴 땐 다행히도 코드를 수정할 필요가 없다. 지금부터 설명하는 절차를 하나씩 따라서 진행해보면 금세 해결 가능하기 때문!! 앱 콘텐츠 선언 수.. 2023. 10. 22.
[Xcode] libarclite_iphonesimulator.a (Error solved) [Xcode] libarclite_iphonesimulator.a Error solved 문제 상황 (Problem) 아래의 에러 메시지가 발생함 File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/a rc/libarclite_iphonesimulator.a 해결 방법 (Way to solve) Podfile을 열어서 제일 아래 부분의 post_install을 아래와 같이 변경한다. post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_set.. 2023. 7. 25.
[Git] remote: Support for password authentication was removed. Please use a personal access token instead. fatal: Authentication failed for ~ [Git] remote: Support for password authentication was removed. Please use a personal access token instead. fatal: Authentication failed for ~ 문제 상황 깃허브에 git push를 할 때, 아이디와 패스워드를 입력하니 인증 실패 메시지가 나오며 푸쉬에 실패한다. 해결 방법 깃헙 설정 페이지에서 personal access token을 받아서 비밀번호로 입력하면 푸쉬에 성공한다. 경로 : 깃허브 설정 > Settings > Personal access tokens > 신규 토큰 발행 해당 토큰을 깃 푸쉬할 때 비밀번호로 입력하면 끝. 2023. 1. 20.
[ios] Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized [ios] Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized 문제 상황 빌드할 때 에러 메시지와 함께 실패한다. Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized 해결 방법 1. 구글 파이어베이스 콘솔에서 GoogleServices-Info.plist를 생성하여 플러터 프로젝트에 포함시킨다. 해당 파일은 Info.plist와 같은 디렉터리에 복사해주면 된다. 2. main()함수에서 await Firebase.initializeApp(); 을 호출한다. 아래 참고! Future main() a.. 2023. 1. 14.
반응형