Tak się zaczęło dziać od dodania nowej biblioteki architektury Android Room. Miałem problemy z AppDatabase_Impl nie exsisting, które naprawiłem dodając kapt do adnotacji jako:Zależność Gradle między zadaniami
- Android Room Persistences library and Kotlin
- Room Persistence lib implementation in Kotlin
- Room Persistence lib implementation in Kotlin(Gradle error)
miałem inne błędy, że podejrzewane były spowodowane do AS, Kotlin i Java 8, więc próbowałem aktualizacji do AS 3.0
Otrzymuję teraz następujący błąd podczas próby kompilacji:
Information:Gradle tasks [:app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:mockableAndroidJar, :app:compileDebugSources, :app:compileDebugAndroidTestSources, :app:compileDebugUnitTestSources, :cryptocurrency-icons:generateDebugSources, :cryptocurrency-icons:mockableAndroidJar, :cryptocurrency-icons:generateDebugAndroidTestSources, :cryptocurrency-icons:compileDebugSources, :cryptocurrency-icons:compileDebugUnitTestSources, :cryptocurrency-icons:compileDebugAndroidTestSources]
Error:Circular dependency between the following tasks:
:app:compileDebugKotlin
+--- :app:dataBindingExportBuildInfoDebug
| \--- :app:compileDebugKotlin (*)
\--- :app:kaptDebugKotlin
\--- :app:dataBindingExportBuildInfoDebug (*)
(*) - details omitted (listed previously)
Information:BUILD FAILED in 1s
Information:1 error
Information:0 warnings
Information:See complete output in console
Moi Gradle pliki wyglądać następująco:
Gradle Projekt
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
ext {
compileSdkVersion = 25
buildToolsVersion = "25.0.3"
minSdkVersion = 16
targetSdkVersion = 25
kotlin_version = '1.1.2-4'
gradle_version = '2.3.2'
android_arch_room_version = '1.0.0-alpha1'
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url 'https://maven.google.com' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Moduł Gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
consumerProguardFiles 'consumer-proguard-rules.pro'
versionCode 100
versionName "1.0.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.mikepenz:iconics-core:[email protected]'
}
App Gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
kapt {
generateStubs = true
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
applicationId "com.my.application"
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}
dependencies {
//Jars
compile fileTree(include: ['*.jar'], dir: 'libs')
//Modules
compile project(':cryptocurrency-icons')
//Kotlin
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
//Support
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
//OSS
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-scalars:2.3.0'
compile 'com.github.daniel-stoneuk:material-about-library:1.9.0'
compile 'com.mikepenz:iconics-core:[email protected]'
compile 'com.mikepenz:community-material-typeface:[email protected]'
compile 'com.github.paolorotolo:appintro:4.1.0'
compile 'com.journeyapps:zxing-android-embedded:3.5.0'
//Data binding
kapt "com.android.databinding:compiler:$gradle_version"
//Room
compile "android.arch.persistence.room:runtime:$android_arch_room_version"
kapt "android.arch.persistence.room:compiler:$android_arch_room_version"
//Test
testCompile 'junit:junit:4.12'
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
}
repositories {
mavenCentral()
}
Czy możesz dostarczyć swój projekt lub optymalnie MCVE za pośrednictwem GitHub lub podobnego? – Vampire
https://github.com/RichyHBM/circular-dependency-mcve Jest to nowy projekt android z bibliotekami Databinding i Room dodanymi jako zależności – RichyHBM
Przykro mi, nie mam dostępnego pakietu Android SDK, ale może ktoś inny może powiedz coś z MCVE. – Vampire