2017-02-17 65 views
0

因此,我已將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. 
+0

你嘗試清洗項目定位到所有的應用程序會崩潰? – Carcigenicate

+0

是的,但沒有變化。文件 - >「無效緩存/重啓」似乎工作,因爲沒有更多的錯誤現在運行之前。 –

回答

1

嘗試的build.gradle這樣

buildscript {{庫jcenter()} {依賴性類路徑 'com.android.tools.build:gradle:2.2.3' }}

+0

我用build.gradle更新了問題,它已經在那裏。此外,導入現在已被識別,但似乎還有另一個與我不明白的appcompat主題有關的問題 –

+0

將Java繼承從ActionBarActivity更改爲「活動」,然後嘗試 –

+0

我到底需要做什麼?我的課程擴展AppCompatActivity? –

0

如果您嘗試使用Android 7以下的設備,請使用V1簽名而不是V2生成APK。如果您選擇了V2簽名,因爲它是爲Android 7.

signature