Ошибка:(31, 5) использует-sdk:minSdkVersion 9 не может быть меньше, чем версия 14, объявленная в библиотеке

Я пытаюсь использовать библиотеку карточек Габриэле Мариотти, из github, используя https://github.com/gabrielemariotti/cardslib.

В настоящее время я использую Android Studio, поэтому я добавил зависимости в свой файл сборки, как указано в документации.

Вот как выглядит мой файл Gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.0.1"

    defaultConfig {
        applicationId "com.vt"
        minSdkVersion 9
        targetSdkVersion 21
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile project(':facebookSDK')
    compile project(':addslidepanel30')
    compile 'com.android.support:support-v4:21.0.1'
    compile 'com.google.android.gms:play-services:+'
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile files('libs/android-support-v7-palette.jar')
    compile files('libs/universal-image-loader-1.9.3-with-sources.jar')
    compile files('libs/volley.jar')

    //Core
    compile 'com.github.gabrielemariotti.cards:cardslib-core:2.0.1'

    //Optional for built-in cards
    compile 'com.github.gabrielemariotti.cards:cardslib-cards:2.0.1'

    //Optional for RecyclerView
    compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.0.1'

    //Optional for staggered grid view
    compile 'com.github.gabrielemariotti.cards:cardslib-extra-staggeredgrid:2.0.1'

    //Optional for drag and drop
    compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.0.1'

    //Optional for twoway  (coming soon)
    //compile 'com.github.gabrielemariotti.cards:cardslib-extra-twoway:2.0.1'
}

Но я продолжаю получать это сообщение об ошибке

Error:(31, 5) uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library C:\Users\SAM-PC\AndroidStudioProjects\vt1.3.0.0 newDB\vt1300newDB\build\intermediates\exploded-aar\com.github.gabrielemariotti.cards\library\1.9.1\AndroidManifest.xml
Error:(31, 5) Execution failed for task ':vt1300newDB:processDebugManifest'.
> Manifest merger failed : uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library C:\Users\SAM-PC\AndroidStudioProjects\vt1.3.0.0 newDB\vt1300newDB\build\intermediates\exploded-aar\com.github.gabrielemariotti.cards\library\1.9.1\AndroidManifest.xml
    Suggestion: use tools:overrideLibrary="it.gmariotti.cardslib.library" to force usage

Я пытался изменить версию карты lib на стабильную, но я получаю ту же ошибку

dependencies {
    //Core card library
    compile 'com.github.gabrielemariotti.cards:library:1.9.1'

    //Extra card library, it is required only if you want to use integrations with other libraries
    compile 'com.github.gabrielemariotti.cards:library-extra:1.9.1'
}

PS: я новичок в Android Studio, мой проект работает отлично в Eclipse, но я пытаюсь перейти на Android Studio, так как это рекомендовано Google . Поэтому я был бы очень признателен за вашу помощь.

2 ответа

Решение

Добавьте в свой манифест следующее:

<uses-sdk android:targetSdkVersion="22" android:minSdkVersion="14"
          tools:overrideLibrary="it.gmariotti.cardslib.library"/>

Более подробную информацию можно найти здесь.

Вы должны изменить свой AndroidManifest.xml как это:

<uses-sdk android:targetSdkVersion="22" android:minSdkVersion="14"
      tools:overrideLibrary="it.gmariotti.cardslib.library"/>

Вам нужно изменить minSdkVersion вашего проекта до 14 или изменить это из it.gmariotti.cardslib.library до 9. Потому что minSdkVersion из импортированной библиотеки 14.

Другие вопросы по тегам