Android Studio不在运行我的任何项目,甚至没有运行hello world应用程序。
我几乎尝试了所有事情。 我已经撞了两天了。我尝试了所有这些:
How do I solve the INSTALL_FAILED_DEXOPT error?
我已禁用即时运行,但没有任何效果。 我已经清理了我的项目,但没有任何效果。 我尝试在它上构建具有相同错误的真实手机。 我尝试清除模拟器数据无效。 在这里尝试了几乎所有内容之后。 我还卸载了Android Studio,然后将其重新安装了3次,没有效果。
gradle:应用 应用插件:“ com.android.application”
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.tete.myapplication"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
项目级别的gradle文件为:
//顶层构建文件,您可以在其中添加所有子项目/模块共有的配置选项。
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
这是一个非常简单的Hello world项目。 请告诉我您还需要什么信息。 这个问题开始让我生气。