카테고리 없음

13일차

원준킹 2021. 1. 30. 13:52

 

- dependency 추가할 때 에러나던 이유

     - app 안의 gradle 파일에 안 넣고 있었음

     - 저번에 실패했던 file chooser 모듈도 다시 테스트해보자

 

 

 

-코루틴 적용 성공

stackoverflow.com/questions/45615474/gradle-error-could-not-find-method-implementation-for-arguments-com-android

 

Gradle - Error Could not find method implementation() for arguments [com.android.support:appcompat-v7:26.0.0]

I am trying to open existing android project in android studio and it gradle cannot build the app without the error Error android studio keeps on throwing Error:(74, 1) A problem occurred evaluat...

stackoverflow.com

 

 

 

codechacha.com/ko/android-coroutine/

 

안드로이드 - Kotlin Coroutine을 사용하는 방법

Kotlin Coroutine은 가벼운 쓰레드(Light-weight thread)입니다. 비동기적인(asynchronous) 프로그래밍이 가능하게 만들어 줍니다. async, launch, coroutine context 등의 코루틴 키워드를 설명하고 어떻게 코루틴을 작

codechacha.com