我在Android Studio上遇到了一个新问题:当我要创建项目时, Build Output 显示:“ 无法识别的密钥库条目”。 更具体地说,似乎是配置项目部分(在 Build Output 中)错误
另外,当我查看我的 Manifest.xml 时,它说这里不允许使用android属性。例如:“ 此处不允许使用android :: layout_width属性”。此外,对于显示以下消息的“ xmlns:app =“ http://schemas.android.com/apk/res-auto” 行:“ URI未注册(设置|语言和框架|模式和DTD)”
我已经检查了我在Internet上可以做的一切...所以我不知道该怎么办。我已经做过了: -使缓存无效/重启 -删除.gradle等重建项目 -重新安装Android Studio
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.android.com/apk/res/android
http://schemas.android.com/apk/res/android ">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
几乎每行都是红色。如何解决此问题?我指定我没有编辑任何内容。我刚刚创建了一个新项目以及其他任何内容。
EDIT:在日志中,我看到的第一个问题是ProjectConfigurationException。所以我告诉你我的build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.dorian.mykotlinapplication"
minSdkVersion 15
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 "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
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'
}
在我创建的每个项目中都会发生
答案 0 :(得分:1)
“无法识别的密钥库条目”可能意味着signingConfig
与任何密钥都不匹配。
并删除这些行:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.android.com/apk/res/android http://schemas.android.com/apk/res/android "
这些是最常见的名称空间:
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
构建项目一次后,并非每隔一行都应该为红色。