4

我正在尝试为 Android 编写一个 kotlin 库,但不能包含木材。我总是收到以下错误:

Error:error: unresolved reference: timber

我的 build.gradle 中有这个:

apply plugin: 'java-library'
apply plugin: 'kotlin'

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
}

sourceCompatibility = "1.8"
targetCompatibility = "1.8"

buildscript {
    ext.kotlin_version = '1.1.2-4'
    repositories {
        maven {url "https://maven.google.com"}
        mavenCentral()
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

repositories {
    mavenCentral()
}

dependencies {
    compile "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    compile 'com.jakewharton.timber:timber:4.5.1'
    testCompile 'junit:junit:4.12'
}

我的源文件目前非常简单:

package net.mbonnin.test

import timber.log.Timber

class Main() {

    fun main() {
        Timber.d("hello world")
    }
}

它在导入语句上失败。

我正在使用 Android studio 3 canary 4 和 kotlin 1.1.2-4。知道我做错了什么吗?还是木材不能在 kotlin 中使用?

4

1 回答 1

6
apply plugin: 'java-library'
apply plugin: 'kotlin'

您没有应用任何 android 插件,因此不知道如何处理@aar工件。但这些是使用 Android 库时的默认工件。有时您也可能会发现@jar具有依赖关系的工件,但不再那么频繁了。木材是

一个带有小型可扩展 API 的记录器,它在 Android 的普通 Log 类之上提供实用程序。

你可以教 Gradle 理解@aar文件,但是在使用 Timber 时你会遇到 Android 依赖项的问题。

所以基本上你必须让你的模块成为一个 Android Kotlin 库。

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
于 2017-06-18T08:14:08.670 回答