我正在尝试构建我的Android项目,(使用android studio以及命令提示符)它在构建此行时会卡住
这是build.gradle文件:
apply plugin: 'com.android.application'
repositories {
mavenCentral()
maven {
url "https://jitpack.io"
}
}
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.example"
minSdkVersion 10
targetSdkVersion 20
versionCode 1
versionName "1"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'org.lucasr.twowayview:twowayview:0.1.4'
compile 'com.fasterxml.jackson.core:jackson-databind:2.2.4'
compile 'com.fasterxml.jackson.core:jackson-core:2.2.4'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.2.4'
compile 'com.android.support:support-v4:22.1.1'
compile 'com.journeyapps:zxing-android-embedded:3.0.0@aar'
compile 'uk.co.androidalliance:edgeeffectoverride:1.0.2'
compile 'com.google.zxing:core:3.2.0'
compile 'com.github.fernandodev.easyratingdialog:easyratingdialog:+'
compile 'com.google.android.gms:play-services-analytics:7.5.0'
compile 'com.github.flavienlaurent:datetimepicker:0f5d399995'
compile 'com.roomorama:caldroid:2.0.0'
}
我正在使用canary频道的最新版Android工作室(我认为它是版本1.4 RC,我试图降级到稳定版但问题仍然存在)另外我尝试运行build / cmd作为管理员,但它没有帮助。
任何人似乎都知道这是什么问题?
答案 0 :(得分:0)
我重启PC,让它运行半小时。现在它适用于Android工作室和控制台。