본문 바로가기

Android64

[안드로이드] tombstone 디버깅 1 https://source.android.google.cn/devices/tech/debug?hl=ko 동적으로 연결된 실행 파일이 시작되면 여러 신호 핸들러가 등록되는데, 충돌 시 logcat에 기본 충돌 덤프가 기록되고 보다 자세한 tombstone 파일은 /data/tombstones/에 기록됩니다. tombstone은 충돌 프로세스에 대한 추가 데이터가 포함된 파일입니다. 특히, 여기에는 (신호를 포착한 스레드뿐만이 아니라) 충돌 프로세스 내 모든 스레드, 전체 메모리 맵 및 열려 있는 모든 파일 설명어에 대한 스택 트레이스가 포함되어 있습니다. Android 8.0 이전에는 debuggerd 및 debuggerd64 데몬이 충돌을 처리했습니다. Android 8.0 이상에서는 필요에 따라 cra.. 2020. 5. 29.
Android Studio 빌드 오류 ERROR: This version of Android Studio cannot open this project, please retry with Android Studio 3.6 or newer. 원인 : Android Studio 3.6.3 앱 기본 생성 할 경우 gradle:3.6.2 버전 설정되어 Android Studio 3.5.3에서 지원되지 않음. Android Studio 업그레이드 하거나 gradle version 변경 필요. 오류 메시지 : ERROR: This version of Android Studio cannot open this project, please retry with Android Studio 3.6 or newer. 해결 방법 1 Project -> Gradle Scripts -> build.gradle 파일 열기 com.android.tools.build:gradle:3.6.2 -> com.android.tools.build:gradle:3.4.1 변경 (3... 2020. 5. 22.
[안드로이드] SQL DB 샘플 소스 개발 정보 - 언어 : JAVA - JAVA API : JAVA 8 - compileSdkVersion : 29 - minSdkVersion : 22 - targetSdkVersion : 29 Github : https://github.com/JsonCorp/AndroidDbSample JsonCorp/AndroidDbSample 공개 샘플 소스. Contribute to JsonCorp/AndroidDbSample development by creating an account on GitHub. github.com DB ADD DB SEARCH DB DELETE DB CLEAR 2020. 5. 21.
Android full source download Android Native Code download Android git 사이트 주소 : https://android.googlesource.com/platform/packages/apps/Launcher.git 테스트를 위해 전체 코드가 아닌 Launcher 코드 다운 로드 리눅스에서 다운 받을 경우 위 git 링크를 그대로 붙혀 넣기 윈도우 경우 Windows Git 다운로드 : https://git-scm.com/download/win Git 터미널 실행 후 다운로드 원하는 폴더 이동 후 git 링크 붙혀 넣기 2020. 5. 17.