일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- 안드로이드 스튜디오
- 웹뷰
- Github
- viewpager
- 레트로핏
- 스튜디오
- 안스
- error
- Android
- coroutine
- 코틀린
- build
- studio
- 코루틴
- RecyclerView
- Retrofit
- 의존성주입
- 깃헙
- 안드로이드스튜디오
- MVVM
- WebView
- 에러
- 안드로이드
- 유튜브
- Gradle
- dart
- image
- Kotlin
- ADB
- Today
- Total
목록Version (2)
코딩하는 일용직 노동자
안드로이드 debug/release 앱을 빌드하면 생성되는 apk 파일에는 별다른 이름이 없습니다. 앱을 빌드할때 자동으로 버전과 날짜를 파일명에 추가해주는 방법을 사용해보겠습니다. app레벨의 build.gradle 파일에 아래의 소스를 추가해줍니다. android { ... defaultConfig { applicationId 'co.kr.test.slx' minSdkVersion minSdk targetSdkVersion targetSdk versionCode 102 versionName "1.0.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } applicationVariants.all{ variant -> varia..
targetSdk버전을 32로 바꾸니 못보던 에러메세지를 보게 되었습니다. Caused by: java.lang.IllegalArgumentException: Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies o..