일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- studio
- 안드로이드 스튜디오
- dart
- 안드로이드
- error
- 스튜디오
- GIT
- coroutine
- 코루틴
- MVVM
- Gradle
- WebView
- RecyclerView
- Github
- 안스
- build
- 안드로이드스튜디오
- ADB
- Android
- 코틀린
- viewpager
- 웹뷰
- 레트로핏
- 깃헙
- 에러
- image
- Kotlin
- 유튜브
- 의존성주입
- Retrofit
- Today
- Total
목록AndroidX (2)
코딩하는 일용직 노동자
업무를 위해 새로운 앱 프로젝트를 전달받아서 설치했는데 gradle dependencies 에 빨간줄이 보였습니다. Version 28 (intended for Android Pie and below) is the last version of the legacy support library, so we recommend that you migrate to AndroidX libraries when using Android Q and moving forward. The IDE can help with this: Refactor > Migrate to AndroidX... 여...영어니까 구글 번역을 돌려보았습니다. -_-;;; 버전 28(Android Pie 이하)은 레거시 지원 라이브러리의 마지막 버전이..
startActivityForResult(), onActivityResult() 가 deprecated 되었습니다. 당장은 쓸 수 있지만 나중을 위해 새로운 방법을 알아보도록 하겠습니다. 일단 간단한 테스트 액티비티를 만들겠습니다. MainActivity 와 이동할 SubActivity를 만들겠습니다. - MainActivity.java package com.lee.starttest; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import androi..