전체 글
-
RunCat (CPU, RAM , Network speed monitoring)Tools/Mac Tools 2020. 1. 8. 08:23
https://apps.apple.com/kr/app/runcat/id1429033973?mt=12 RunCat The cat runs at the speed according to the CPU usage of your Mac. By looking at the running of a cat, you can see how much CPU load is. • You can purchase various Runners at the Runners Store. - Golden Cat (Special Color Version) - Cheetah - Dog - Puppy - apps.apple.com RunCat은 mac 의 상태표시줄에 CPU , RAM, Network 속도 등의 PC의 상태를 모니터링 하여 ..
-
Android Learning Links (안드로이드 학습 링크)Android 2020. 1. 7. 14:13
안드로이드를 공부하기 위한 유용한 사이트 링크 [안드로이드 개발자 공식사이트] https://developer.android.com/ Android Developers The official site for Android app developers. Provides the Android SDK tools and API documentation. developer.android.com [안드로이드 개발자 학습 코스] https://developer.android.com/courses Training Courses | Android Developers Find the training option that's right for you. developer.android.com [구글 코드 랩스] https://..
-
java.lang.RuntimeException: Method myLooper in android.os.Looper not mocked.Android/Error 2020. 1. 7. 09:52
테스트 코드 실행시 아래와 같은 에러가 발생시 조치 방법 java.lang.RuntimeException: Method myLooper in android.os.Looper not mocked. build.gradle 에 아래와 같이 추가 android { // ... testOptions { unitTests.returnDefaultValues = true } } [참고링크] http://tools.android.com/tech-docs/unit-testing-support#TOC-Method-...-not-mocked.- Unit testing support - Android Studio Project Site Android tools project information site tools.andro..
-
Android 고유식별자 (unique identifiers)Android 2020. 1. 2. 23:19
안드로이드에서 하드웨어의 고유한 구분값이 필요한 경우가 있습니다. 하지만 무분별하게 고유값을 가져올경우 개인의 위치 식별이나 해킹 개인정보등에 노출이 있을수 있기 때문에 한정된 방법으로 고유식별자를 가져오도록 권장하고 있습니다. https://developer.android.com/training/articles/user-data-ids 고유 식별자 권장사항 | Android 개발자 | Android Developers이 문서에서는 사용 사례에 따라 앱에 적합한 식별자를 선택하는 방법을 설명합니다. Android 권한과 관련된 일반적인 내용은 권한 개요를 참조하세요. Android 권한을 사용하기 위한 구체적인 권장사항은 앱 권한 권장사항을 참조하세요. Android 식별자 사용 권장사항 Android ..
-
No tests were found (Test code running failed)Android/Error 2019. 12. 26. 17:52
안드로이드에서 Test코드가 실행이안되며 No test were found 라고 에어를 출력한다면 gradle 에서 testInstrumentationRunner 가 예전 android.support로 되어 있을 수 있습니다. testInstrumentationRunner = 'android.support.test.runner.AndroidJUnitRunner' androidX 로 변경해줍니다. testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'
-
Android Dev Summit 2019 extended SeoulConference 2019. 12. 25. 01:03
https://festa.io/events/744 Android Dev Summit 2019 extended Seoul | Festa! Festa에서 당신이 찾는 이벤트를 만나보세요. festa.io Android Dev Summit 2019 extended Seoul 에 다녀왔습니다. 사실 감기때문에 안가려다가 그래도 올해 마지막 행사인데 가야지 하고 힘들게 왔습니다. 그리고 감기 덕분에 포스팅도 늦었습니다. 발표 내용들은 이번에 구글에서 발표한 Android Dev Summit 19 에서 발표한 내용을 정리한 내용이 주된 발표 입니다. https://www.youtube.com/watch?v=5jJ-e278BFY&list=PLWz5rJ2EKKc_xXXubDti2eRnIKU0p7wHd 굿즈는 화면의 스..
-
Android Studio Editor 폰트(글꼴) 변경Android 2019. 12. 17. 18:02
Mac 기준으로 설명입니다. Android studio -> Prefernces 로 이동 Editor -> Font 로이동 Font 항목에서 원하는 폰트를 선택후 OK 버튼 클릭 [사용 글꼴] https://dnight.tistory.com/entry/%EB%84%A4%EC%9D%B4%EB%B2%84-%EB%82%98%EB%88%94%EA%B3%A0%EB%94%95-%EC%BD%94%EB%94%A9%EA%B8%80%EA%BC%B4 네이버 나눔고딕 코딩글꼴 https://github.com/naver/nanumfont naver/nanumfont Contribute to naver/nanumfont development by creating an account on GitHub. github.com 네이버..
-
Storage Access Framwork 다루기 (Android ScopedStorage)Android 2019. 12. 13. 11:25
https://github.com/DNights/AndroidScopedStorageSample DNights/AndroidScopedStorageSample Android scoped storage sample project. Contribute to DNights/AndroidScopedStorageSample development by creating an account on GitHub. github.com Storerage Accesss Framwork(SAF) 를 이용하여 파일을 다루는 방법에 대한 내용입니다. SAF의 파일 구조는 Root 를 지정하여 그 하위의 Document들을 트리형태로 가진 구조를 입습니다. 제어 방식은 Intent를 통해서 Open Document, Create Do..