我是新手,我从Android的第一步开始。
直到昨天,当我单击“调试'app'”时突然停止编译并出现此错误时,我才能够编译和测试我的Android应用
Android resource linking failed
C:\Users\Nicolas\AndroidStudioProjects\ATMobile\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2508: error: resource android:attr/fontVariationSettings not found.
C:\Users\Nicolas\AndroidStudioProjects\ATMobile\app\build\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:2509: error: resource android:attr/ttcIndex not found.
error: failed linking references.
这是我的成绩。buil(应用程序)
apply plugin: 'com.android.application'
android {
signingConfigs {
}
compileSdkVersion 26
// buildToolsVersion "26.0.2"
defaultConfig {
applicationId "ar.com.codigose.atmobile"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0 BETA"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
//buildToolsVersion '29.0.0 rc1'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:support-v4:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1'
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'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.nbsp:library:1.8'
implementation 'android.arch.navigation:navigation-fragment:1.0.0'
}
我评论了 buildToolsVersion 标记,因为我在github中看到了原始文件,但没有该行。
和这个成绩。建立(项目)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
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()
maven {
url "http://dl.bintray.com/lukaville/maven"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我想继续在sdk 26中进行开发,但看不到有什么问题。
在理想情况下,该行: 实施'com.android.support:appcompat-v7:26.1.0'
带下划线并表示发现28.0.0版本的内容,但该版本我什么也没有。
这是怎么回事? 最好的问候
答案 0 :(得分:1)
如果您要在与原始文件不同的Android SDK版本上构建此应用,则此Udacity链接可能会有所帮助(页面的注释部分):
答案 1 :(得分:0)
已解决,问题是我在一项活动中添加了新功能或“导航器碎片” ...所有东西都上厕所了!...
感谢所有人。
答案 2 :(得分:0)
让我们在gradle-wrapper.properties中看到您的gradle版本应该 对于classpath至少为4.10.1
classpath 'com.android.tools.build:gradle:3.3.2'
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
希望这会起作用。