因此,我已將Android Studio從1.5版更新至2.2.3,這完全破壞了我的項目。我在編程方面很新,而且我的應用程序之前工作得很好,但現在,每個Android庫導入都標記爲紅色。Android Studio更新(1.5至2.2.3)中斷項目
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
}
更新: 做文件 - > 「的Invalidate緩存/重新啓動」 似乎工作。現在,下一個問題如下:
一旦我嘗試運行該項目的應用程序打開並立即崩潰。我得到以下日誌:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
你嘗試清洗項目定位到所有的應用程序會崩潰? – Carcigenicate
是的,但沒有變化。文件 - >「無效緩存/重啓」似乎工作,因爲沒有更多的錯誤現在運行之前。 –