Я перенес свой проект на androidx. мой проект зависит от некоторых сторонних библиотек, я использую один файл arr в моем проекте. после миграции я получаю сообщение об ошибке, как показано ниже.
Невозможно разрешить зависимость для ': app @ debug / compileClasspath': не удалось преобразовать файл 'csjsdk-beta.aar' для соответствия атрибутам {artifactType= processing-aar} использование transform JetifyTransform Показать подробности Затрагиваемые модули: csjsdkdemo-app
здесь находится файл уровня приложения
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.demo.csjbot.csjsdkdemo"
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'
}
}
sourceSets {
main {
// 将 jniLib 指向 libs
jniLibs.srcDir 'libs'
}
}
repositories {
flatDir {
dirs 'libs'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.appcompat:appcompat:1.1.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
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(name: 'csjsdk-beta', ext: 'aar')
implementation 'io.netty:netty-all:4.1.23.Final'
implementation 'com.google.code.gson:gson:2.8.1'
}
Может ли кто-нибудь помочь мне в этом?