现在我已经在Android Studio(1.1.0)上结束了,我无法使用模拟器。我的应用在实际设备上运行良好。
我在这个论坛和其他消息来源上找到的这个问题的所有答案都说让模拟器运行直到锁定屏幕出现,但我不认为我会活得足够长时间来尝试解决方案。
当我使用Eclipse时,我可以点击运行,它会启动模拟器,一切都会运行。这在AS中不起作用。接下来我单独启动AVD,我得到黑屏,上面写着android(用奇怪的字体),灯光闪烁在整个单词上。我让它在那里停留长达半个小时,没有任何反应。如果我然后运行该模块,我会在这篇文章的标题中得到错误。
这是我的AVD定义:(我已经改变了我能想到的一切,似乎没有任何改变。 为了更好的图片look here 这是我的gradle.buile模块。 。
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:15'
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.deanblakely.mttTrial"
minSdkVersion 15
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':library')
compile ('com.google.android.gms:play-services:6.5.87')
{
exclude module: 'support-v4'
}
compile files('libs/android-support-v4.jar')
compile files('libs/gson-2.2.2.jar')
}