Development/Android(705)
-
Error-"app_name" is not translated in
에러 내용 "app_name" is not translated in af, am, ar, bg, ca, cs, da, de, el, en-rGB, en-rIN, es, es-rUS, et-rEE, fa, fi, fr, fr-rCA, hi, hr, hu, hy-rAM, in, it, iw, ja, ka-rGE, km-rKH, ko, lo-rLA, lt, lv, mn-rMN, ms-rMY, nb, nl, pl, pt, pt-rPT, ro, ru, sk, sl, sr, sv, sw, th, tl, tr, uk, vi, zh-rCN, zh-rHK, zh-rTW, zu Issue: Checks for incomplete translations where not all strings are translated Id..
-
Error-A package name cannot start or end with a dot
오류 메시지 A package name cannot start or end with a dot 해결 방법 eclipse > Help > Install New Software... Add 버튼 클릭 Name과 Location에 아래와 같이 입력후 OK버튼 클릭 NameadtLocationhttps://dl-ssl.google.com/android/eclipse/ Select All > Next Next I accept the terms of the license agreements 체크 > Finish 우측하단에 보면 설치가 진행되고 있는 것을 확인할 수 있습니다. OK Yes eclipse가 재 시작 후 화면 새 프로젝트 정상적으로 생성할 수 있습니다.
-
디바이스 재접속-adb 종료시키기
adb를 종료시키면 adb가 재시작되면서 디바이스를 서치하여 재접속하게 됩니다.
-
Android Studio Update
update 클릭 Update and Restart 버튼 클릭 Android Studio가 자동 재시작됩니다. 버전확인하기 Android Studio >>> Help >>> About
-
2015년 2월 안드로이드 버전별 점유율
http://developer.android.com
-
안드로이드 핵심 파일과 디렉터리 구조
안드로이드 응용프로그램의 핵심 파일과 디렉터리 구조 안드로이드 파일설명AndroidManifest.xmlAndroidManifest.xml파일은 응용프로그램의 전역 설정을 저장. 응용프로그램의 능력, 앱의 권한, 사용되는 라이브러리, 실행 방식, 엑티비티 등 설정해주는 곳.project.propertiesproject.properties 파일은 자동으로 생성되는 프로젝트 파일로, 응용프로그램의 빌드 대상과 기타 적절한 빌드 시스템 옵션들 정의.src폴더응용프로그램의 모든 소스 코드를 담는 필수 폴더.bin폴더컴파일된 애플리케이션 코드가 저장.gen폴더응용프로그램을 위해 자동으로 생성된 자원(resource)파일들을 담는 필수 폴더. R.java(응용프로그램 자원 관리자 소스 파일) 자동생성res폴더아이콘..