오래된 장치(폰)에서 안드로이드 앱을 실행하는 방법
2025. 3. 18. 21:50ㆍFrontend/Android
- 목차
반응형
minSdk와 targetSdk의 version을 29와 같이 오래된 버전으로 낮춰서 빌드하면 오래된 장치에서도 앱을 실행할 수 있습니다.
android {
namespace = "com.example.gesture_detection"
compileSdk = 35
defaultConfig {
applicationId = "com.example.gesture_detection"
minSdk = 29
targetSdk = 29
versionCode = 1
versionName = "1.0"
...
반응형
'Frontend > Android' 카테고리의 다른 글
LiveData 사용 이유 (0) | 2025.02.27 |
---|---|
Android에서 Unresolved reference: activity_main 에러 (0) | 2023.02.16 |
Android Studio 앞/뒤(forward/backward) 이동 (0) | 2023.02.10 |
Android vector resource 생성 (0) | 2023.02.09 |
Android Unresolved reference: getDrawableCompat (0) | 2023.02.05 |