How in InteliJ IDEA to choose the minimum version of the android in the project?

    1 answer 1

    In the build.gradle file build.gradle specify the minSdkVersion value of the version you need.

     apply plugin: 'com.android.application' android { compileSdkVersion 24 buildToolsVersion "23.0.3" defaultConfig { applicationId "com.your.app" minSdkVersion 16 targetSdkVersion 24 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } dependencies { androidTestCompile 'junit:junit:4.12' compile fileTree(dir: 'libs', include: ['*.jar']) } 
    • Thanks, I saw. - J. Defenses