android - 将 butterknife 添加到 android 库项目会为库类提供编译时错误 "package does not exists"

标签 android compiler-errors build.gradle android-library butterknife

我试图将 butterknife 库添加到我的库项目中并按照步骤操作。

https://github.com/JakeWharton/butterknife. 

项目在 gradle sync 时没有显示任何错误,但是当我尝试运行应用程序时,它返回编译错误 package does not exits for my library classes that I have used in the application.

error

error:package com.sample.library.BaseMainActivity does not exist
error:cannot find symbol class BaseMainActivity
error:cannot find symbol variable super

project/build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.3'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
        classpath 'com.jakewharton:butterknife-gradle-plugin:8.4.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

应用程序/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.sample.test"
        minSdkVersion 9
        targetSdkVersion 23
        versionCode 3
        versionName "v3.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    // ButterKnife
    compile 'com.jakewharton:butterknife:8.4.0'
    apt 'com.jakewharton:butterknife-compiler:8.4.0'

    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile project(':library')

    testCompile 'junit:junit:4.12'
}

库/build.gradle

apply plugin: 'com.android.library'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.jakewharton.butterknife'


android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        minSdkVersion 9
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {

    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile 'com.android.support:cardview-v7:23.4.0'
    compile 'com.android.support:recyclerview-v7:23.4.0'

    //Dagger
    apt 'com.google.dagger:dagger-compiler:2.2'
    compile 'com.google.dagger:dagger:2.2'
    provided 'javax.annotation:jsr250-api:1.0'

    // ButterKnife
    compile 'com.jakewharton:butterknife:8.4.0'
    apt 'com.jakewharton:butterknife-compiler:8.4.0'
}

如果我删除 ButterKnife 依赖项,应用程序将无错误地运行。图书馆项目以某种方式与 butterknife 图书馆发生冲突,但无法找出原因和方式。请帮助我做错了什么。

最佳答案

如果升级 library 中的 Dagger 版本,一切编译都没有问题。

使用:

apt 'com.google.dagger:dagger-compiler:2.4'
compile 'com.google.dagger:dagger:2.4'

关于android - 将 butterknife 添加到 android 库项目会为库类提供编译时错误 "package does not exists",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39222761/

相关文章:

java - 如何从 Java 中的另一个类获取变量?

Android 海拔不显示阴影

vba - excel vba编译年份函数错误

opengl - G++。无法链接库

c - Webrtc2sip : error adding symbols: DSO missing from command line

android - 从 "app-debug.apk"更改生成的 apk 名称

android - 在高层次上,gradle sync 在 Android 中如何工作?

android xml标签字符串组合

android - 如何在 Android Studio 中生成具有自定义名称的输出 APK 文件?

Android facebook 通知图片