gpt4 book ai didi

android - 错误 : package com. android.annotations 在 android studio 2.3.1 中不存在

转载 作者:行者123 更新时间:2023-11-29 19:15:28 24 4
gpt4 key购买 nike

我正在使用

import com.android.annotations.Nullable;

它正在编译并且应用程序正在运行

  • 安卓工作室 2.3
  • gradle 版本 2.14.1 和
  • 安卓插件版本2.2.3.

但是更新到之后

  • 安卓工作室 2.3.1
  • gradle 版本 3.3 和
  • android 插件版本 2.3.1

它停止编译。我搜索了其他一些 SoF 问题,例如 this但他们建议使用不同的包

import android.support.annotation.Nullable;

我想知道必须使用支持库包。如果是,它是如何与其他导入一起运行的?

我的应用程序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.3.1'
// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "io.realm:realm-gradle-plugin:3.0.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
}

模块构建.gradle

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


dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile 'com.android.support:support-annotations:25.1.0'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.android.gms:play-services-maps:10.0.1'
compile 'com.github.PhilJay:MPAndroidChart:v2.2.5'
compile 'com.android.support:design:25.1.0'
compile 'com.pkmmte.view:circularimageview:1.1'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile 'com.android.support:support-v4:25.1.0'
compile 'com.github.aakira:expandable-layout:1.4.2@aar'
compile 'com.google.maps.android:android-maps-utils:0.4.4'
// retrofit library for networking calls
compile 'com.squareup.retrofit2:retrofit:2.2.0'
// gson adapter for rxjava
compile 'com.squareup.retrofit2:converter-gson:2.2.0'
// rxjava adapter for retrofit
compile 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
// rxandroid library
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
// rxjava library
compile 'io.reactivex.rxjava2:rxjava:2.0.6'
// sugar ORM library
compile 'com.github.satyan:sugar:1.5'
// compile 'com.squareup.okhttp3:okhttp:3.5.0'
compile 'com.jakewharton:butterknife:8.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
// library for implementing Parcelable interface
compile 'org.parceler:parceler-api:1.1.6'
annotationProcessor 'org.parceler:parceler:1.1.6'
compile 'com.github.eralpyucel:CircleProgressView:v1.1'
// library for intercepting OKHttp3 api calls
compile 'com.squareup.okhttp3:logging-interceptor:3.4.1'
compile 'me.relex:circleindicator:1.2.2@aar'
// releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
compile 'com.squareup.picasso:picasso:2.5.2'
// library to show view transition in pre-lollipop android version
compile 'com.kogitune:pre-lollipop-activity-transition:1.3.3'
// library for getting user location updates
compile 'com.github.delight-im:Android-SimpleLocation:v1.0.1'
// library for date time picker
compile 'com.wdullaer:materialdatetimepicker:3.1.3'
// for showing memory leaks
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
// for viewing database in chrome
debugCompile 'com.facebook.stetho:stetho:1.5.0'
// n/w interceptor will show request url, header, body and response
debugCompile 'com.facebook.stetho:stetho-okhttp3:1.5.0'
debugCompile 'com.facebook.stetho:stetho-js-rhino:1.5.0'
// realm support for stetho
debugCompile 'com.uphyca:stetho_realm:2.0.0'
}

在build.gradle中可以看到我已经注释掉了

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

我在 Android studio 2.3 中使用的注释插件,更新后我删除了它,因为注释处理器由 Android studio 本身提供。

所以我想知道为什么android studio找不到

导入android.support.annotation.Nullable;

更新后,这个注解类是否出现在我之前使用的插件中?

最佳答案

我也遇到了这个问题,我有

import com.android.annotations.NonNull;

但找不到包裹。

所以我评论了那行并再次导入,它变成了:

import android.support.annotation.NonNull;

终于成功了。

关于android - 错误 : package com. android.annotations 在 android studio 2.3.1 中不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43654948/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com