Неверная инструкция targetApi, допустимые инструкции: REMOVE, REPLACE, STRICT - PullRequest
0 голосов
/ 29 февраля 2020

я добавил компиляцию "androidx.work:work-runtime:2.3.2" в мои зависимости, теперь мне сообщают об этой ошибке, как я могу решить эту проблему?

это мой файл манифеста, я изменил целевой и скомпилировать SDK версии для Android, чтобы работать, но все же мне не повезло, исправляя это, что я должен попытаться решить эту проблему?

Я читал, что это иногда случается, но у меня нет активности, выполняющей целевой API в моем файле манифеста.

  buildscript {
repositories {
    maven { url 'https://plugins.gradle.org/m2/' }

}
dependencies {

}
}


repositories {
maven { url 'https://maven.google.com' }
maven { url 'https://jitpack.io' }
}


apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion "25.0.2"
defaultConfig {
    applicationId "com.example.android.friendzr"
    manifestPlaceholders = [
            onesignal_app_id               : '',
            // Project number pulled from dashboard, local value is ignored.
            onesignal_google_project_number: 'REMOTE'
    ]
    multiDexEnabled true

    minSdkVersion 21
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

 dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})










compile 'com.android.support:appcompat-v7:28.0.0-alpha1'
compile 'com.android.support:design:28.0.0-alpha1'
compile 'com.google.firebase:firebase-auth:11.0.4'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.android.support:cardview-v7:28.0.0-alpha1'
compile 'com.google.firebase:firebase-storage:11.0.4'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.google.android.gms:play-services:11.0.4'
compile 'com.firebase:geofire-android:2.3.1'
compile 'de.hdodenhof:circleimageview:3.0.0'
compile 'com.github.lguipeng:BubbleView:1.0.1'
compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:support-v4:28.0.0-alpha1'
compile 'com.android.volley:volley:1.1.0'
compile 'com.google.firebase:firebase-messaging:11.0.4'
compile "androidx.work:work-runtime:2.3.2"
testCompile 'junit:junit:4.12'

 }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...