본문 바로가기

분류 전체보기

(115)
23.09.27 77일차 TIL 정예반 강의 복습
23.09.26 76일차 TIL 숙련 과제 재복습 뷰 바인딩 리스트뷰 리사이클러뷰 프래그먼트 다이얼로그 알림
23.09.25 75일차 TIL Latest supported version is AGP 8.0.2 에러코드 youtube data api v3 The project is using an incompatible version (AGP 8.1.1) of the Android Gradle plugin. Latest supported version is AGP 8.0.2 https://android.benigumo.com/20221101/android-development-versions/ 참고 출처 Android Gradle Plugin 마찬가지로 메뉴에서, File -> Project structure -> project -> Android Gradle Plugin Version 8.0.2 선택 youtube data api v3 사용방법 출처링크 https://taptorestart.tistory.com/entry/API-%EC%84%A4%EA%..
23.09.22 부트캠프 72일차 TIL editText 엔터 이벤트 [Android][kotlin] editText 엔터 완료 이벤트 (KeyEvent in Kotlin) https://stickode.tistory.com/451 -출처 [Android][kotlin] EditText Submit처럼 사용하기 안녕하세요. 오늘은 EditText 텍스트에 Enter 키를 입력받도록 적용해보겠습니다. 1. Activity를 생성합니다. 2. Activity의 레이아웃에 사용자의 input을 받을 EditText와, 결과를 나타낼 textView를 생성합니다 stickode.tistory.com binding.editSearch.setOnKeyListener { v, keyCode, event -> //if(event.action == KeyEvent.ACTION_DOWN &..
23.09.21 부트캠프 71일차 TIL API 키 숨기기 https://yeons4every.tistory.com/99 api키 숨기는 사이트 개인 심화과제 @GET("v2/search/image") //V2가 아니라 소문자 v2 api키 가리는방법 build.gradle module:app pulgins{} 사이 Properties properties = new Properties() properties.load(project.rootProject.file('local.properties').newDataInputStream()) android{} import java.sql.date가 있는데 ex)util.data로 해야됨! 해당kt파일과 import 해야됨 import java.util.Date var date: Date? = null //Date? 부분..
23.09.20 부트캠프 70일차 TIL 심화 과제 하는중
23.09.18 부트캠프 69일차 TIL 대복습 입문 숙련 심화 대복습
23.09.15 부트캠프 66일차 TIL sharedpreference 복습 toolchain error compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = '1.8' } kotlin { jvmToolchain(17) } kotlinOptions { jvmTarget = JavaVersion.VERSION_17.toString() } viewBinding { enabled = true } } class MyData { companion object { val mThumb = arrayOf( R.drawable.sample_1, R.drawable.sample_3, R.drawable.sample_4, R.drawable.sa..
23.09.14 부트캠프 65일차 TIL 패키지 안 패키지 만들기 Suppressed: kotlinx.coroutines.DiagnosticCoroutineContextException:[StandaloneCoroutine {Cancelling}@7430857, Dispatchers.Main.immediate] PROCESS ENDED (3132) for package net.flow9.thisiskotlin.dustapp 2023-09-14 11:47:32.537 3132-3132 Process net.flow9.thisiskotlin.dustapp I Sending signal. PID: 3132 SIG: 9 2023-09-14 11:53:09.600 29397-29397 studio.deploy install_server-b3369435E Could not rem..
23.09.13 부트캠프 64일차 TIL googleMap 구글맵 지도 api키 깃허브 push 시 가려지는 방법 error code buildscript {} blocks must appear before any plugins {} blocks in the script 해결방법 : plugins 위에 작성하기 buildscript { dependencies { classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1" } } plugins { id 'com.android.application' version '8.0.2' apply false id 'com.android.library' version '8.0.2' apply false..