Я знаю, что этот тип вопроса задавался ранее, но моя проблема не была решена с этими ответами.Сегодня я добавил новую версию PayU Money в свое приложение, и внезапно он показывает ошибку.Я преобразовал весь проект в androidx , появляется та же ошибка.
Не удалось объединить манифест: Атрибут application @ appComponentFactory value = (androidx.core.app.CoreComponentFactory) из [androidx.core: core: 1.0.0] AndroidManifest.xml: 22: 18-86 также присутствует на [com.android.support:support-compat:28.0.0] AndroidManifest.xml: 22: 18-91 value = (android.support.v4.app.CoreComponentFactory).Предложение: добавьте 'tools: replace = "android: appComponentFactory"' к элементу на AndroidManifest.xml: 31: 5-163: 19, чтобы переопределить.
Если я добавил это tools: replace= "android: appComponentFactory внутри файла манифеста он показывает новую ошибку
Ошибка слияния манифеста с несколькими ошибками, см. журналы
При проверке слияния манифеста отображается
Ошибки слияния: Ошибка: инструменты: заменить указанное в строке: 31 для атрибута android: appComponentFactory, но не указано новое значение главного манифеста приложения (этот файл), строка 30 Ошибка: проверка не пройдена, выход из главного манифеста приложения(этот файл)
Не могу понять ошибку. Вот build.gradle (приложение)
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.packagename"
minSdkVersion 16
targetSdkVersion 28
versionCode 54
versionName "5.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
multiDexEnabled true
ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
checkReleaseBuilds false
abortOnError false
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE-FIREBASE.txt'
exclude 'META-INF/NOTICE'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
google()
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://zendesk.jfrog.io/zendesk/repo' }
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.firebase:firebase-database:19.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.volley:volley:1.1.1'
implementation 'com.google.android.gms:play-services-identity:17.0.0'
implementation 'com.google.android.gms:play-services-auth:17.0.0'
implementation 'com.google.android.gms:play-services-gcm:17.0.0'
implementation 'com.google.firebase:firebase-messaging:20.0.0'
implementation 'com.google.firebase:firebase-core:17.2.0'
implementation 'com.google.firebase:firebase-perf:19.0.0'
implementation 'com.google.android.gms:play-services-analytics:17.0.0'
implementation('com.crashlytics.sdk.android:crashlytics:2.9.1@aar') {
transitive = true;
}
implementation 'com.google.code.gson:gson:2.8.2'
implementation files('libs/YouTubeAndroidPlayerApi.jar')
implementation 'com.github.bumptech.glide:glide:4.0.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0-RC0'
implementation 'com.facebook.android:facebook-android-sdk:4.22.0'
implementation 'com.wefika:flowlayout:0.4.1'
implementation 'com.squareup.picasso:picasso:2.71828'
implementation project(':sdkui')
implementation 'com.android.support:design:28.0.0'
implementation 'com.zopim.android:sdk:1.4.2'
/* Snappydb (cache/db) */
/*For shimmer effect*/
implementation 'com.facebook.shimmer:shimmer:0.4.0'
implementation 'com.snappydb:snappydb-lib:0.5.2'
}
apply plugin: 'com.google.gms.google-services'
Пожалуйста, помогите мне решить эту проблему