오래된 장치(폰)에서 안드로이드 앱을 실행하는 방법

2025. 3. 18. 21:50Frontend/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"
        ...
반응형