일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 안드로이드
- Android WebView
- MVP Architecture
- Android Interceptor
- scope function
- Java
- DataBinding
- Kotlin FCM
- Kotlin
- WebView
- Android Navigation
- Android DataBinding
- OkHttp Interceptor
- Android 12
- 프로그래머스 알고리즘
- Android
- Android ViewPager2
- 습관만들기
- 안드로이드 카카오 로그인
- 영어독립365
- android recyclerview
- 안드로이드 fcm
- Android Jetpack
- 영어공부
- 안드로이드 갤러리 접근
- Android 12 대응
- 알고리즘 자바
- 카카오 알고리즘
- Android ProgressBar
- 66챌린지
- Today
- Total
목록안드로이드/Android 12(targetSdk 31) (3)
Developer Geek
Android 12: Safer Component Exporting 대응 중요 내용 공식 문서에서는 Android 12 이상부터 Safer Component Exporting에 대해서 아래와 같이 설명한다. If your app targets Android 12 or higher and contains activities, services, or broadcast receivers that use intent filters, you must explicitly declare the android:exported attribute for these app components. 안드로이드 12 이상을 타겟할 경우, activity, service 또는 broadcast receiver 중에서 intent f..
PendingIntent Mutability 안드로이드 앱의 targetSdk 버전이 12라면 무조건 PendingIntent 객체에 mutability를 명시해야한다. PendingIntent 란 class PendingIntent: Parcelable 공식문서에는 다음과 같이 설명되어있다. A description of an Intent and target action to perform with it. Instances of this class are created with getActivity, getActivities, getBroadcast and getService; the returned object can be handed to other applications so that they c..
스플래시 화면 변경사항 및 SplashScreen API 기본 사용법 개요 Android 12(targetSdkVersion 31) 이상부터는 SplashScreen을 구현하기 위해서는 SplashScreen API로 사용해야 한다. SplashScreen API 를 이용하지 않음으로써 발생하는 문제점 android:windowBackground 를 사용하는 경우, 스플래시 화면이 Android 12 이상의 버전에서는 안드로이드에서 제공하는 디폴트 스플래시로 변경된다. Activity 를 사용하여 스플래시를 구현한 경우, 스플래시 화면이 Android 12 이상의 버전에서는 안드로이드에서 제공하는 디폴트 스플래시 다음으로 Activity 에서 만들어진 스플래시 화면이 보여진다. SplashScreen A..