Android64 [Android] You may need to adjust the proxy settings in Gradle. 빌드 에러 원인 : 안드로이드 프로젝트 최초 생성 후 빌드 할 경우 인터넷에서 다운 받을 라이브러리를 다운받지 못해 에러 발생 수정 : 컴퓨터에 인터넷 연결 후 재빌드 Unknown host 'dl.google.com'. You may need to adjust the proxy settings in Gradle. Learn about configuring HTTP proxies in Gradle Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'. > Could not resolve all task dependencies for configuration ':app:debugCompileClasspath'. > Could not.. 2021. 5. 27. [Android] Java 코드에서 Kotlin 코드 사용하기 기존앱에서 코틀린 추가 방법은 아래 링크 참조 https://json8.tistory.com/155 [Android] android java kotlin 같이 쓰기 개요 : 기존 자바로 구현되어 있는 앱에 Kotlin 코드와 같이 사용하고 싶을 경우 Kotlin SDK 추가 방법 및 API 호출 방법 공유 Project build.gradle에 kotlin plugin 선언 코틀린 버전은 원하는 버전으로 사용... json8.tistory.com Java 코드에서 Kotlin 코드 사용 방법 Module build.gradle에 선언한 kotlin 경로에 파일 생성 build.gradle sourceSets { main.java.srcDirs += 'src/main/kotlin' } src/main/ko.. 2021. 5. 16. [Android] android java kotlin 같이 쓰기 개요 : 기존 자바로 구현되어 있는 앱에 Kotlin 코드와 같이 사용하고 싶을 경우 Kotlin SDK 추가 방법 및 API 호출 방법 공유 Project build.gradle에 kotlin plugin 선언 코틀린 버전은 원하는 버전으로 사용. // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.5.0' repositories { google() mavenCentral() } dependencies { classpath "co 2021. 5. 16. [Android] java.lang.NullPointerException (no error message) 원인 : NDK 경로가 맞지 않거나 사용중인 NDK 설치되어 있지 않음. 해결 : NDK 경로 변경 및 사용중인 NDK 다운로드 오류 메시지. A problem occurred configuring project ':app'. > java.lang.NullPointerException (no error message) * Try: Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Exception is: org.gradle.api.ProjectConfigurationException: A problem occurred configuring project ':app'. at org... 2021. 5. 15. 이전 1 ··· 3 4 5 6 7 8 9 ··· 16 다음