반응형

Platform/Android 124

[Error] Duplicate class com.google.firebase.*

MY Case) "com.google.mlkit:barcode-scanning:$versions.mlkit_barcode_scanning" 을 추가한 후 발생 versions.mlkit_barcode_scanning = "16.0.1" 해결! FCM 버전을 최신버전으로 UP 시켜주었다. versions.firebase_messaging = "20.2.1" // FCM https://stackoverflow.com/questions/62578673/how-to-fix-duplicate-class-com-google-firebase-components How to fix `duplicate class com.google.firebase.components`? I started to use the MLKit ..

Platform/Android 2020.09.03

[Android SDK] onNewIntent()

B화면에서 다시 B를 부를 때 (B Activity가 foreground 상태) https://dev.eyegood.co.kr/entry/Android%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-onNewIntent-%EC%95%8C%EC%95%84%EB%B3%B4%EC%9E%90 Android/안드로이드 onNewIntent 알아보자! 안녕하세요. 오늘은 onNewIntent 에관하여 포스팅을 해보겠습니다. 화면 전환을 하실떄 Intent intent = new Intent(this , MainActivity.class); startActivity(intent); 위와같은 기본 화면 전환 인텐트입니다... dev.eyegood.co.kr

Platform/Android 2020.09.02

[UI] 해상도

해상도(Resolution) = 단위: px adb adb shell wm size code DPI(density) = 1인치에 들어있는 px 수, 기기마다 다르다. adb adb shell wm density px = dp * (DPI/160) QVGA 0.077 메가픽셀 = 320×240 VGA 0.3 메가픽셀 = 640×480 SVGA 0.5 메가픽셀 = 800×600 XGA 0.8 메가픽셀 = 1024×768 (XVGA라고 함) WXGA 1.0 메가픽셀 = 1280×800) SXGA 1.3 메가픽셀 = 1280×1024 WXGA+ 1.3 메가픽셀 = 1440×900 SXGA+ 1.4 메가픽셀 = 1400×1050 WSXGA+1.7 메가픽셀 = 1680×1050 UXGA 1.9 메가픽셀 = 1600..

Platform/Android 2020.08.28

[UI] (!) failed to initialize editor

failed to initialize editor : xml layout 정상적으로 안보일 때 https://fluorite94.tistory.com/107 [Android / 안드로이드] design editor is unavailable until a successful project sync 에러 안드로이드 스튜디오에서 layout xml을 편집할 때 종종 Design editor is unavailable until a successful project sync 라는 문구가 나타나면서 XML의 디자인 미리보기가 나타나지 않습니다. [File - Sync Proj.. fluorite94.tistory.com

Platform/Android 2020.08.27

[File] 외부저장소/내부저장소

외부저장소(external storage) = sdcard 다른 곳에서 읽혀질 수 있다. mContext.getExternalFilesDir(null).getAbsolutePath() 내부저장소(internal storage) = 내부에 저장된 파일은 기본적으로 해당 앱만 접근 가능 시스템이 앱이 제거될 때 내부에 저장된 파일을 모두 제거 mContext.getFilesDir().getAbsolutePath() https://ismydream.tistory.com/124 안드로이드 File 다루기 안드로이드 File 다루기 File 다루기 - 안드로이드는에는 내부, 외부의 두가지의 파일 저장 영역이 있다. (internal, external storage) internal storage (내부) - 항상..

Platform/Android 2020.08.16
반응형