Ошибка манифеста может быть удалена путем добавления следующих строк в app / build.gradle
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == 'com.android.support') {
if (!requested.name.startsWith("multidex")) {
details.useVersion '28.0.0-alpha1'
}
}
}
}
Но приложение все еще не может разрешить зависимости. Я хочу использовать firebase, и у него есть некоторые зависимости с пакетами androidX. Мы можем получить график зависимостей, запустив скрипт в папке android
./gradlew :app:dependencies
+--- com.google.firebase:firebase-auth:19.2.0
| +--- androidx.collection:collection:1.0.0
| | \--- androidx.annotation:annotation:1.0.0 -> 1.1.0
| +--- androidx.fragment:fragment:1.0.0
...
Есть ли какое-то решение для этого? Мой проект использует ioni c и реагирует
**** If you give negative please tell why.
I am struggling for few days and not able to find a solution other than manually editng all the capacitor java files ****