목록Study/Android (5)
:: ADVANCE ::
pc 설정 후 Android Studio 첫 실행 결과 Amulater 실행 시 바로 뜨는 Fail ,, Fail Log 오전 12:51 Emulator: dsound: Could not initialize DirectSoundCapture 오전 12:51 Emulator: dsound: Reason: No sound driver is available for use, or the given GUID is not a valid DirectSound device ID 오전 12:51 Emulator: dsound: Attempt to initialize voice without DirectSoundCapture object 오전 12:51 Emulator: dsound: Attempt to initiali..
[Android Studio][Error] layout_behavior not found. Error log : Error:error: attribute 'com.example.chat.chatapplication:layout_behavior' not found. log 가 뜨면서 resource xml 파일이 열리지 않는 경우 ---> build.gradle 에서 dependency 에 support:design 추가 기본 셋팅 Gradle1234567891011121314151617181920212223242526272829// Top-level build file where you can add configuration options common to all sub-projects/modules. ..
[Android Studio][Error] Gradle sync failed Error log : Could not resolve com.android.support:appcompat-v7:26.1.0 Could not resolve com.android.support.constraint:constraint-layout:1.0.2 ............ offline 어쩌구 log 가 나오면서 gradle sync fail이 발생할 경우 build 시간 단축을 위해 셋팅해두었던 File -> Settings -> Build, Exception, Deployment -> Gradle 에서 Offline work - check 를 다시 uncheck 해주면 된다. -> offline으로 미리 gradle s..
GED (Google Experience Device) GED ( Google Experience Device ) - 구글에서 하드웨어와 스프트웨어 플랫폼의 사양을 모두 결정하는 안드로이드 기반 모델 - 대표적인 GED 단말 : Nexus One, Nexus S, Galaxy Nexus - Android 레퍼런스 폰이 아니라, 그냥 구글폰 [참고] https://ji5.me/2012/01/30/ged-distortion/
[Android] 모바일 디바이스의 하드웨어 구조 모바일 디바이스의 주요 하드웨어인 모뎀, AP 등 모뎀 - 모바일 디바이스의 통신 기능만을 담당AP - 그 외의 작업을 담당 1. AP ( Application Processor ) 과거 피쳐폰 플랫폼에서는 하나의 프로세서가 모뎀과 사용자 어플리케이션을 모두 실행하였다.과거에는 음성통화나 SMS 같은 통신이 주된 기능이었으며, 멀티미디어 기능이 크게 중요하지 않았기 때문이다.그러나 스마트폰 플랫폼의 경우 통신기능 이외에도 다양한 기능등을 제공해야 하는 고성능 컴퓨팅 파워를 필요로 하게 되었다. 따라서 하나의 프로세서가 모뎀과 AP의 역할을 감당하기 어려워졌다.이에 스마트폰 플랫폼에서 어플리케이션의 구동을 담당하는 AP와 통신을 담당하는 모뎀으로 발전하게 ..