본문 바로가기
728x90
반응형

window3

[kotlin] onBackPressed() deprecated 개발환경 ----------------------------------- os : windows tool : androidStdudio 언어 : kotlin ----------------------------------- 오랜만에 android 개발하면서 또 알아낸 것 onBackPressed 메서드가 더이상 사용되지 않는다고 한다. 바뀐게 많으니 재미있다.. override fun onBackPressed() { super.onBackPressed() } 원래는 이렇게 썼었다. 앞으로 back키에 이벤트를 주고 싶을 때 써야할 방식은 private val callback = object : OnBackPressedCallback(true) { override fun handleOnBackPressed(.. 2023. 9. 12.
[kotlin] build.gradle.kts viewBinding 설정 개발환경 ----------------------------------- os : windows tool : androidStdudio 언어 : kotlin ----------------------------------- 오랜만에 android 를 할랬더니 신기한게 많이 나왔다. 그 중에서 build.gradle.kts 라는 파일을 볼거다. 원래는 ViewBinding 셋팅을 android { viewBinding { enable true } } 이런식으로 했는데 안먹혀서 찾아보니 android 속성 안에 buildFeatures { viewBinding = true } 이렇게 넣어줘야 한다고 한다. 2023. 9. 11.
[window] java 17 설정하기 개발환경 ----------------------------------- os : windows ----------------------------------- https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html Java Archive Downloads - Java SE 17 WARNING: These older versions of the JDK are provided to help developers debug issues in older systems. They are not updated with the latest security patches and are not recommended for use in pr.. 2023. 9. 11.
728x90
반응형