android 删除 ACRA 后找不到符号 class RequiresApi
android cannot find symbol class RequiresApi after removing ACRA
我需要删除 ACRA 以消除任何漏洞。
我删除了 app.gradle 和 MyApplication.java 中的所有 imports/compiles。但是,当我尝试构建项目时,IDE 给出以下错误:
error: cannot find symbol class RequiresApi
这些是我的 app.gradle 和 MyApplication.java
app.gradle(删除 dependencies 中的 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"
}
MyApplication.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的问题吗?
@RequiresApi
是 com.android.support:support-annotations
的一部分。您必须将其添加为依赖项
例如
dependencies {
com.android.support:support-annotations:27.1.1
}
我需要删除 ACRA 以消除任何漏洞。 我删除了 app.gradle 和 MyApplication.java 中的所有 imports/compiles。但是,当我尝试构建项目时,IDE 给出以下错误:
error: cannot find symbol class RequiresApi
这些是我的 app.gradle 和 MyApplication.java
app.gradle(删除 dependencies 中的 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"
}
MyApplication.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的问题吗?
@RequiresApi
是 com.android.support:support-annotations
的一部分。您必须将其添加为依赖项
例如
dependencies {
com.android.support:support-annotations:27.1.1
}