更新されたAndroid同期時にスタジオとプラグインが失敗し、ロックファイルの親ディレクトリを作成できませんでした
ラッパープロパティ:
#Sun Mar 05 16:51:59 PKT 2017 distributionBase=
GRADLE_USER_HOME distributionPath=wrapper/
dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/
dists distributionUrl=https\://services.gradle.org/distributions/
gradle- 3.3-all.Zip
build.gradleアプリモジュール:
apply plugin: 'com.Android.application'
Android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.sarahn.toyapplication"
minSdkVersion 17
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'),
'proguard- rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.Android.support.test.espresso:espresso-core:
2.2.2', {
exclude group: 'com.Android.support', module: 'support-annotations'
})
compile 'com.Android.support:appcompat-v7:25.1.0'
testCompile 'junit:junit:4.12'
}
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.3.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
}
nDKをダウンロードし、プロジェクトとインストールから.gradleフォルダーを削除しようとしましたが、先に進みません
環境:Windows 10
Gradleビルドが親ディレクトリの作成に失敗し、そこでキャッシュフォルダを削除した場所に行きました
誰かがUbuntuのIntellijで同じ問題を抱えている場合、以下が私の問題を解決しました:
~/.gradle/caches
のすべてを削除します
これは私のために働いたAndroid Studio v3.0
ルートフォルダー.gradelwgradle.bat(Windowsの場合)で削除し、gradle/.idea /プロジェクトを再度開きます。
Androidスタジオパス内のgradleフォルダーに移動し、最新のgradleバージョンをダウンロードして、gradleのバージョンを変更します。次にAndroid studio> settingsに移動します。そして、gradleのバージョンをインストールしたものに変更します
これは私のために働いたAndroidスタジオバージョン3.3.1
アプリバーのFile
をクリックしてから、Invalidate caches / Restart
そしてINVALIDATE AND RESTART
私の場合、(Win 1064ビットおよびAndroid Studio3.1.3エラーを修正するために管理者としてAndroid Studioを実行する必要がありました。
Android Studioを3.0.1にアップグレードしたときに同じ問題が発生しました。すべてのプロジェクトでこのエラーメッセージが表示されました。(Windows10 Pro 64ビット)
Android StudioとGradleを手動で再インストールしてみましたが、効果のない別のgradleバージョンを使用することにしました。
最後の手段として、私にとってうまくいったのはクリーンな再インストールでした。
アンインストールAndroid studio
「環境変数」とGRADLE_USER_HOMEのパスからgradleを削除します
ユーザーから.AndroidStudio、.Android、.gradleフォルダーを削除します
AndroidSdkを削除する
PCを再起動します
再インストールAndroid StudioとSDK
その後、問題なくコンパイルされたプログラム。