Search code examples
androidandroid-4.2-jelly-bean

how to provide Jelly bean support to android kitkat app


I have made an android app, minSdkVersion = 19 and targetSdkVersion =19. I have targetted it for devices having kitkat .Now i want to add Jelly Beans support to it . Right Now when i try to install my app on any jelly bean device it says:

"No active compatible AVD's or devices found. Relaunch this configuration after connecting a device or starting an AVD."

I am not sure how to proceed.


Solution

  • if you're using android studio

    go to you're app gradle and change

    defaultConfig { applicationId "com.example" minSdkVersion 16 targetSdkVersion 23 versionCode 1 versionName "1.0" }

    and if you're using eclipse in you're manifest file change this

    <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="23" android:maxSdkVersion="23" />