본문 바로가기
반응형

Android50

[android]cannot resolve symbol contextcompat 에러메시지 "cannot resolve symbol contextcompat" 가 발생하면"android.support.v4.content.ContextCompat" 의존 라이브러리가 설치 되지 않아서 나타나는 이슈이다. 해결책은 build.gradle 파일 내에 의존성을 추가해주면 된다.dependencies { // other stuff here compile 'com.android.support:support-v4:23.0.0' // update the 23.0.0 to latest version available } 2019. 3. 16.
Android Studio에서 SHA-1 값 확인하는 방법 Android Studio 오른편에 보면 ‘Gradle’라는 버튼이 있습니다. Gradle 뷰안에서 SHA-1 값을 조회하기를 원하는 프로젝트를 선택한 다음 ‘Tasks → android → signingReport’를 더블 클릭하면 위 그림에서처럼 ‘Gradle Console’에 SHA-1 값이 출력됩니다. Google 공식 가이드 Google에서는 여기에서 디버그 모드에서의 SHA-1 값을 획득하는 방법을 잘 설명하고 있습니다. 디버그 모드에서 사용하는 Keystore는 debug.keystore 파일이며, 이 파일의 위치는 Windows : C:\Users\your_user_name.android\ MacOS 및 Linux : ~/.android/ 입니다. 해당 위치로 이동하여 다음 커맨드를 입력하.. 2019. 1. 22.
INSTALL_FAILED_INVALID_APK "INSTALL_FAILED_INVALID_APK" 는 저의 경우 git 에 프로젝트를 등록하기 위해 폴더들을 이동 복사 한 후 발생하였습니다. 해결방안 1) "Build"메뉴에서 "Clean Project"메뉴를 실행 2) "Build"메뉴는 "Rebuild Project"를 실행 후 Launch,. 2019. 1. 22.
keytool 환경변수 설정하기 * keytool 은 현재 OS 에 설치된 JRE 하위에 keytool가 있다. 1. Ctrl + Pause 키를 누르고 환변 변수 설정에 진입한다. 2. ex: (C:\Program Files\Java\jre1.8.0_191\bin) jre 내의 bin 을 환경 변수로 등록해 준다. 3. 해당 프로그램 또는 cmd prompt 를 재시작 하여 keytool 이 정상적으로 지정되었는지 확인한다. 2019. 1. 22.
[android]Unsupported method: BaseConfig.getApplicationIdSuffix() Android Studio 에서 프로젝트 오픈시에 "Unsupported method: BaseConfig.getApplicationIdSuffix()" 오류가 발생했다.아래 gradle 버전을 classpath 'com.android.tools.build:gradle:1.3.0' 에서 classpath 'com.android.tools.build:gradle:2.3.2' 로 변경해 주고 다시 refresh 하면 해결할 수 있다. 2018. 1. 17.
Android Resources$NotFoundException: String resource ID Android 를 실행했을 때 Resources$NotFoundException: String resource ID #0x0 이러한 오류 문구가 뜰 때가 있다. 이는 TextVIew 에 String 방식이 아닌 다른 타입의 방식을 setText를 하려 했기 때문에 발생한다. 혹시 integer 형식이나 다른 타입을 변환없이 바로 setText 하지 않았나 확인해 보자. "String resource ID # 0x0 Resources $ NotFoundException" when you run the Android app. Rather than a String type value to TextVIew, this occurs because you try to setText methods of other ty.. 2017. 12. 27.
반응형