0
Android Studio 3.0 Canary 4をインストールした後私はプロジェクトをビルドできず、私の古いプロジェクトをビルドできませんAndroidのメーカーのバージョン2.3.2Android Studio 3.0をダウンロードした後、私はAndroid Studio 2.3.2でプロジェクトをコンパイルできません。
私はgradle.propertiesは、次の点
- 追加にこのラインを試してみました -
- が.gradleフォルダを削除しようとしたgradle.jvmargs = -Xmx1024m
- Androidスタジオを管理者として実行しようとしました
- 試してみてくださいファイル>キャッシュを無効/再起動してください。
です。私の組織はそのせいでのファイアウォールを遮断いくつかのファイルであるコモドインターネットセキュリティあるアンチウイルスをインストールしているので、 おかげ
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.android.ucssurvey"
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
repositories {
mavenCentral()
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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:26.0.0-beta2'
compile 'com.android.support:design:26.0.0-beta2'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
私はAndroid Studioを再インストールして、1つのバージョンしか保存しませんでした。 –
'プロジェクトをrebuild'して、あなたの質問 – Dennis
@Rakshitを打つ:ビルドファイル –