본문 바로가기
반응형

Development Solutions142

[Android Studio][Mac] 유용한 단축키 모음 [Android Studio][Mac] 유용한 단축키 모음 해당 게시글글은 애플 Mac OS에서 안드로이드 스튜디오를 사용할 때 유용하게 사용하는 단축키를 정리하는 글이다. 필요할 때마다 업데이트 예정이다. 위젯 감싸기 opt + Enter 파일 찾기(소스, 설정 등) shift 연속으로 2번 누르기 코드 자동 정렬 opt + cmd + L 2023. 1. 21.
[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.
[ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". [ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 문제 상황 ios 앱을 빌드했더니 이러한 에러 메시지가 나오면서 빌드에 실패한다. Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 해결 방법 ios/Flutter/Runner/Assets.xcassets/ 아래에 AppIcon.appiconset을 추가한다. 아이콘 모음을 생성하고 추가하는 방법은 아래 글을 .. 2023. 1. 14.
반응형