전체 글316 Android] 파이어베이스 Analytics DebugView 파이어베이스 디버그 모드를 설정하면빠르게 애널리틱스 확인하고 DebugView로 결과를 조회할 수 있다. cmd 들어가서 아래코드로 실행C:\Users\User\AppData\Local\Android\Sdk\platform-tools>adb shell setprop debug.firebase.analytics.app 패키지명// adb shell setprop debug.firebase.analytics.app PACKAGE_NAMEhttps://firebase.google.com/docs/analytics/debugview?hl=ko 디버깅 이벤트 | Google Analytics for Firebase의견 보내기 디버깅 이벤트 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분.. 2025. 8. 26. Android] Provided Metadata instance has version 2.1.0, while maximum supported v https://issuetracker.google.com/issues/386304679?pli=1 Google Issue Trackerissuetracker.google.com kapt를 ksp로 바꿧더니 해결되었다. https://developer.android.com/build/migrate-to-ksp#kts kapt에서 KSP로 이전 | Android Studio | Android Developers주석 프로세서의 사용을 kapt에서 KSP로 이전합니다.developer.android.com KSP analyzes Kotlin code directly, which is up to 2x faster. It also has a better understanding of Kotlin l.. 2025. 8. 17. 프로그래머스] 타켓 넘버 Kotlin https://school.programmers.co.kr/learn/courses/30/lessons/43165 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr class Solution { fun solution(numbers: IntArray, target: Int): Int { var answer = 0 fun dfs(size : Int, res: Int) { if(size == numbers.size) { // 끝까지 연산했을때 target과 같으면 answer++ if(res == ta.. 2025. 5. 28. 프로그래머스] JadenCase 문자열 만들기 Kotlin class Solution { fun solution(s: String): String { val answer = s.toMutableList() for(i in answer.indices) { // 다 소문자로 만들고 if(answer[i].isUpperCase()) { answer[i] = answer[i].toLowerCase() } // 조건 맞는거만 대문자로 변환 if(i == 0 && answer[i].isLowerCase()) { answer[i] = answer[i.. 2025. 5. 23. 프로그래머스] 의상 Kotlin https://school.programmers.co.kr/learn/courses/30/lessons/42578?language=kotlin 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr https://seedpotato.tistory.com/329 [프로그래머스] - 의상(Kotlin)https://school.programmers.co.kr/learn/courses/30/lessons/42578 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는seedpotato.tistory.com class Solution { .. 2025. 5. 23. Android] Fragment 생성시에는 newInstance로. All subclasses of Fragment must include a public no-argument constructor. The framework will often re-instantiate a fragment class when needed, in particular during state restore, and needs to be able to find this constructor to instantiate it. If the no-argument constructor is not available, a runtime exception will occur in some cases during state restore. 화면회전이나 화면 재생성으로 인해 Fragment 재생성시 no-a.. 2025. 1. 24. 이전 1 2 3 4 ··· 53 다음