我在Android studio中创建了一个项目。 即使没有修改项目中的任何单个字符,我也无法运行它。它会出现以下错误。
java.lang.RuntimeException:无法启动活动 ComponentInfo {com.kk.myapplication / com.kk.myapplication.MainActivity}: java.lang.IllegalStateException:这个应用程序是用 配置错误。请配置您的构建 VectorDrawableCompat。
这些是代码。
MainActivity.java:
package com.kk.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
Manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kk.myapplication">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.kk.myapplication"
minSdkVersion 19
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
}
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:1.5.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
}
如何解决此问题?我没有改变任何项目中的任何帮助。
答案 0 :(得分:5)
在这里你会遇到这个问题。
https://code.google.com/p/android/issues/detail?id=214182
解决方案是升级gradle plugin to v2.0+ (upgraded to 2.1.0)
在您的依赖项中添加此内容。
{
classpath 'com.android.tools.build:gradle:2.1.0'
}
并同步项目。
修改:
更改此
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
到这个
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
答案 1 :(得分:0)
似乎这是此处报告的不兼容的gradle版本的问题.. Google issue
更新gradle版本可能会解决此问题 -
buildscript {
...
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
答案 2 :(得分:0)
添加到您的value
文件
date
答案 3 :(得分:0)
这是旧的,但另一个选项可能是您的活动从Activity而不是AppCompatActivity继承。可能会有各种其他考虑因素发挥作用,但这对我有用。