Android Studio - Can't specify own minSdkVersion

后端 未结 3 1835
栀梦
栀梦 2021-01-18 18:00

After installing the Android L Developer Preview SDK earlier today I wanted to make my app compatible with both Android L and older versions such as Jelly Bean. My app uses

3条回答
  •  滥情空心
    2021-01-18 18:12

    In developer documentation says (http://developer.android.com/preview/setup-sdk.html):

    On the development environment, open the build.gradle file for your module and make sure that:

    • compileSdkVersion is set to 'android-L'
    • minSdkVersion is set to 'L'
    • targetSdkVersion is set to 'L'

    It seems that can't be backward compatible (right now).

提交回复
热议问题