#android #maven #android-library
#Android #maven #android-библиотека
Вопрос:
У меня есть проект библиотеки aar, я использую его в примере проекта. Я добавил соответствующую библиотеку в локальный репозиторий Maven. Когда я проверяю файл Pom, я вижу его как зависимость Okhttp3 / logging / HttpLoggingInterceptor . Но я столкнулся с ошибкой при съемке экрана ниже. Есть предложения?
мой родительский файл gradle приложения выглядит как приведенный выше код
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.example.deneme"
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
dataBinding {
enabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.6'
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.3'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'com.mylibrary:feature:1.0.15@aar'
implementation 'com.android.support:multidex:1.0.3'
}
Ответ №1:
Моя проблема в том, что при создании файла pom он генерируется неправильно, на самом деле у меня проблема с неправильным вложенным модулем. После того, как я исправил настройки pom, моя проблема была решена.