gpt4 book ai didi

android - 支持库中的字体 26.0.0-beta2 : Error: Content is not allowed in prolog

转载 作者:行者123 更新时间:2023-11-29 14:44:34 25 4
gpt4 key购买 nike

我正在尝试使用新功能,直接将字体添加到 xml 中,但没有成功。

我为 26.0.0-beta2 支持库设置我的项目,在 res 文件夹中创建 font 资源文件夹,将一些字体复制到其中当尝试构建它时,我收到了Error: Content is not allowed in prolog. 消息。

这是结构:

enter image description here

我的应用程序的 build.gradle 没什么特别的:

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
}
}

allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

ext {
supportLibVersion = '26.0.0-beta2'
constraintLayout = '1.0.2'
playServicesVersion = '10.2.6'
butterknifeVersion = '8.0.1'
stethoVersion = '1.5.0'
realmStethoVersion = '2.0.0'
daggerVersion = '2.11'
}

task clean(type: Delete) {
delete rootProject.buildDir
}

我模块的 build.gradle 是:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.test.myproject"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
exclude module: 'jsr305'
})

compile "com.android.support:support-core-utils:$supportLibVersion"
compile "com.android.support:appcompat-v7:$supportLibVersion"

//ConstrainLayout
compile "com.android.support.constraint:constraint-layout:$constraintLayout"

//Dager2
compile "com.google.dagger:dagger-android:$daggerVersion"
compile "com.google.dagger:dagger-android-support:$daggerVersion"
annotationProcessor "com.google.dagger:dagger-android-processor:$daggerVersion"

testCompile 'junit:junit:4.12'
}

我在某处读到,将字体临时移动到项目外的某个地方,重建然后将它们移回就足够了,但这不起作用,我再次收到该消息。我在这里做错了什么?

谢谢!

最佳答案

要使用这些新功能,您必须更新classpath 'com.android.tools.build:gradle: 至少到 3.0.0-alpha1

关于android - 支持库中的字体 26.0.0-beta2 : Error: Content is not allowed in prolog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44472297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com