如何为 android kitkat 应用程序提供果冻豆支持
how to provide Jelly bean support to android kitkat app
我制作了一个 android 应用程序,minSdkVersion = 19
和 targetSdkVersion =19
。
我已经将它定位为具有 kitkat 的设备。现在我想向它添加 Jelly Beans 支持。现在,当我尝试在任何果冻豆设备上安装我的应用程序时,它会显示:
"No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD."
我不确定如何进行。
如果您使用的是 android studio
转到您的应用程序 gradle 并更改
defaultConfig {
applicationId "com.example"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
如果您在清单文件中使用 eclipse,请更改此
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="23"
android:maxSdkVersion="23" />
我制作了一个 android 应用程序,minSdkVersion = 19
和 targetSdkVersion =19
。
我已经将它定位为具有 kitkat 的设备。现在我想向它添加 Jelly Beans 支持。现在,当我尝试在任何果冻豆设备上安装我的应用程序时,它会显示:
"No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD."
我不确定如何进行。
如果您使用的是 android studio
转到您的应用程序 gradle 并更改
defaultConfig {
applicationId "com.example"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
如果您在清单文件中使用 eclipse,请更改此
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="23"
android:maxSdkVersion="23" />