gpt4 book ai didi

删除 ACRA 后,android 找不到符号类 RequiresApi

转载 作者:行者123 更新时间:2023-11-29 23:53:06 27 4
gpt4 key购买 nike

我需要删除 ACRA 以消除任何漏洞。我已经删除了 app.gradle 和 MyApplication.java 中的所有导入/编译。但是,当我尝试构建项目时,IDE 给出以下错误:

error: cannot find symbol class RequiresApi

这些是我的 app.gradle 和 MyApplication.java

app.gradle(删除依赖项中的 compile 'ch.acra:acra:4.9.2' 后无法构建)

buildscript {
(omitted)
}
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "******"
minSdkVersion 17
targetSdkVersion 22
versionCode 6
versionName "1.0.3"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
disable 'RestrictedApi'
}
}

dependencies {
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.journeyapps:zxing-android-embedded:3.0.1@aar'
compile 'com.google.zxing:core:3.2.0'
compile 'com.jakewharton:butterknife:8.0.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.0.1'

compile 'net.zetetic:android-database-sqlcipher:3.5.7@aar'

compile 'com.google.code.gson:gson:2.8.2'
//compile 'ch.acra:acra:4.9.2' <- REMOVED ACRA
compile "io.reactivex.rxjava2:rxjava:2.1.9"
compile "io.reactivex.rxjava2:rxandroid:2.0.2"
}

我的应用程序.java

package ******;

import android.app.Application;

public class MyApplication extends Application {
private static MyApplication myApplication;

public static MyApplication getInstance() {
return myApplication;
}

public void onCreate() {
super.onCreate();
myApplication = this;
}
}

我也曾尝试清理我的项目并重建,但没有成功。当我放回 ACRA 时,项目会像往常一样构建。是IDE的问题吗?

最佳答案

@RequiresApicom.android.support:support-annotations 的一部分。您必须将其添加为依赖项

例如

dependencies {
com.android.support:support-annotations:27.1.1
}

关于删除 ACRA 后,android 找不到符号类 RequiresApi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50691540/

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