Development/Android(705)
-
ERROR: Could not find com.android.tools.build:gradle:3.0.1. - 오류메시지, 해결방법
ERROR: Could not find com.android.tools.build:gradle:3.0.1. [Add Gogle Maven repository and sync project] [Do Refactor] [Update] WARNING: It will be removed at the end of 2018. For more information see:https://codedragon.tistory.com/7868
-
ERROR: Failed to resolve: com.android.support:appcompat-v7:28.0.0 - 에러 메시지, 해결방법
에러 메시지ERROR: Failed to resolve: com.android.support:appcompat-v7:28.0.0 해결방법build.gradle(Project: projectname)build.gradle(Project: projectname) 에서 allprojects {}안에 google()로 google repository를 추가해 줍니다. dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', ..
-
인텐트의 구성 요소
인텐트의 구성 요소각 인텐트를 구성하는 요소들입니다.
-
The specified Android SDK Build Tools version (xx.x.x) is ignored, as it is below the minimum supported version (xx.x.x) for Android Gradle Plugin x.x.x. Android SDK Build Tools xx.x.x will be used.
에러메시지안드로이드스튜디오 업에디트 후 기존 프로젝트를 오픈할 경우 SDK Build Tools 버전이 맞지 않아 아래와 같은 오류메시지가 발생할 수 있습니다. The specified Android SDK Build Tools version (xx.x.x) is ignored, as it is below the minimum supported version (xx.x.x) for Android Gradle Plugin x.x.x. Android SDK Build Tools xx.x.x will be used. WARNING: The specified Android SDK Build Tools version (28.0.2) is ignored, as it is below the minimum suppor..
-
It will be removed at the end of 2018. For more information see 해결방법 - Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api', Configuration 'testCompile' is obsolete and has been replaced with 'testImplementat..
에러 메시지 update시 자동으로 교제되지만 참조하고 있는 모듈에 문제가 있는 경우에는 관련 설정 항목을 직접 수정해 주어야 합니다. 아래의 해결방법으로 해결하시기 바랍니다. Configuration 'androidTestCompile' is obsolete and has been replaced with 'androidTestImplementation' and 'androidTestApi'. Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. Configuration 'testCompile' is obsolete and has been replaced with 'testImplementati..
-
Google Map API 사용하기 위한 절차 (Android)
Google Map API 사용하기 위한 절차· Google Play Services SDK 다운로드· 구글 지도 사용을 위한 API키 생성o Google APIs Console 프로젝트 생성o Google Maps Android API 항목 활성화· 획득한 API키 확인하기· Key 제한 하기o 인증서 지문 생성o API 키에 패키지명과 SHA-1인증서 지문 등록하기o o 새로운 키 생성 및 인증서 지문 등록· 프로젝트 설정o 구글맵 라이브러리를 지정 (build.gradle(Module:app)o 안드로이드 마니페이스 파일 설정 (AndroidManifest.xml)o 구글API Key 지정 하기(google_maps_api.xml)o activity_main.xml 작업o MainActivity 작..