简体   繁体   中英

Choose the Target SDK in Android Studio

I need to see which SDKs I can choose, but when I go to the module settings (Android Studio (Preview) 0.5.8) I see only this 在此处输入图片说明

and I can't find this settings, where I can choose the Target SDK 在此处输入图片说明

How can I do it?

You have to modify the targetSdkVersion field of the build.gradle file.

This is an example:

defaultConfig {
            minSdkVersion 10
            targetSdkVersion 19
            versionCode 1
            versionName "1.0.0"
        }

Hope it helped, Mattia

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM