今日、Android Studioバージョンを1.5から2.0にアップグレードしましたが、何か問題が発生しました。
最初にGradleバージョンのエラーが発生したため、Gradleバージョンを2.10から2.12に更新しました。
# previous
# distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.Zip
# current
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-all.Zip
Gradleバージョンのエラーがなくなりました。
しかし、プロジェクトを実行しようとするとこのエラーが発生します。
Error running app: This version of Android Studio is incompatible with the Gradle Plugin used. Try disabling Instant Run (or updating either the IDE or the Gradle plugin to the latest version)
これは私のプロジェクトGradle.buildです。
// 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.0.0'
classpath 'com.google.gms:google-services:2.1.0-alpha1'
classpath 'com.neenbedankt.gradle.plugins:Android-apt:1.8'
// 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
}
そして、これは私のmodule:app Gradle.buildファイルです。
apply plugin: 'com.Android.application'
apply plugin: 'io.fabric'
apply plugin: 'Android-apt'
Android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.test"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
dexOptions {
maxProcessCount = 4 // this is the default value
javaMaxHeapSize "4g"
preDexLibraries = false
}
}
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
mavenCentral()
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
mavenCentral()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile('com.crashlytics.sdk.Android:crashlytics:2.5.5@aar') { transitive = true; }
compile('com.Twitter.sdk.Android:Twitter:1.12.1@aar') { transitive = true; }
apt 'com.github.hotchemi:permissionsdispatcher-processor:2.1.2'
compile 'com.Android.support:appcompat-v7:23.3.0'
compile 'com.Android.support:design:23.3.0'
compile 'com.Android.support:cardview-v7:23.3.0'
compile 'com.Android.support:palette-v7:23.3.0'
compile 'com.Android.support:recyclerview-v7:23.3.0'
compile 'com.Android.support:support-v13:23.3.0'
compile 'com.Android.support:support-v4:23.3.0'
compile 'com.Android.support:multidex:1.0.0'
compile 'com.google.Android.gms:play-services-analytics:8.4.0'
compile 'com.google.Android.gms:play-services-gcm:8.4.0'
compile 'com.google.Android.gms:play-services-maps:8.4.0'
compile 'com.google.Android.gms:play-services-location:8.4.0'
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
compile 'com.facebook.Android:facebook-Android-sdk:4.6.0'
compile 'com.Paypal.sdk:Paypal-Android-sdk:2.13.3'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.github.hotchemi:permissionsdispatcher:2.1.2'
}
apply plugin: 'com.google.gms.google-services'
設定からインスタントランを無効にしましたが、何も変更されていません。
このエラーを解決するにはどうすればよいですか?
私は半日苦労しています。
プロジェクトを削除した後、ビルドフォルダを削除しましたが、すべて正常に動作しています。 :D
これがなぜ起こるのか正確にはわかりませんが、ビルド前の設定が新しいビルド設定と競合する可能性があります。
Android Studioを2.3に更新した後、この問題に直面しました!ファイルを削除しませんでした!
プロジェクトをきれいにしただけそしてそれはうまくいきました!
オンAndroid 2.0以降。
1-Settings
-> Build, Execution, Deployment
オプション-> Instant Run
2-Enable instant run to hot swap code
をクリア
3-クリーンプロジェクト
p/s:完全に機能するはずです。
私はAndroid Studio 2.2を使用しています。プロジェクトをクリーンアップし、ビルドフォルダーを削除して問題を解決しました。
私はあなたと1つだけ異なっています。 build.gradleを使用しました。クラスパス 'com.Android.tools.build:gradle:+'
Android Studio up to date !!
Android Studio> ヘルプ> アップデートの確認...
Plugin version Required Gradle version
1.0.0 - 1.1.3 2.2.1 - 2.3
1.2.0 - 1.3.1 2.2.1 - 2.9
1.5.0 2.2.1 - 2.13
2.0.0 - 2.1.2 2.10 - 2.13
2.1.3 - 2.2.3 2.14.1+
2.3.0+ 3.3+
例えばgradle-wrapper.propertiesファイルでGradleバージョンを3.3に設定します。
...
distributionUrl = https\://services.gradle.org/distributions/gradle-3.3-all.Zip
...
build.gradleファイルから、GradleのAndroidプラグインをバージョン2.3.0に設定します。
buildscript {
...
dependencies {
classpath 'com.Android.tools.build:gradle:2.3.0'
}
}
また、次をチェックして、衝突がないことを確認する必要があります:File
-> Project Structure
->(クリック)Project
また、Gradleファイルが自動的に更新され、しばらくすると実行されます。
この場合、プロジェクトをクリアする(ビルド->プロジェクトのクリーン)のは正しいことです。