所以我将Android Studio从版本1.5更新到2.2.3,这完全破坏了我的项目。我很擅长编程,我的应用程序之前工作得很好,但现在,每个android库导入都标记为红色。
import android.animation.ArgbEvaluator;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.ActivityInfo;
import android.graphics.Color;
import android.media.MediaPlayer;
import android.os.CountDownTimer;
例如,这些都不再被识别。我已经更新了Android Studio想要的所有内容,但是我不知道如何解决这个问题。
我的gradle文件如下所示:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.privatpc.quiztest"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
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.1.1'
}
的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.2.3'
classpath 'com.google.gms:google-services: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
}
更新 做文件 - > “无效缓存/重启”似乎有效。现在下一个问题如下:
一旦我尝试运行该项目,该应用程序就会打开并立即崩溃。我得到以下日志:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
答案 0 :(得分:1)
尝试在build.gradle中执行此操作
buildscript {repositories {jcenter()} dependencies {classpath'com.android.tools.build:grad:2.2.3'}}
答案 1 :(得分:0)
如果您正在尝试Android 7以下的设备,请使用V1签名而不是V2生成APK。如果您选择V2 Signature,则所有应用都会崩溃,因为它针对Android 7。