buildscript {
repositories {
maven { url 'https://maven.fabric.io/repo' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/repo' }
}
android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
defaultConfig {
//noinspection GroovyAssignabilityCheck
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
versionCode 15
versionName "1.8"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
}
debug {
debuggable true
applicationIdSuffix ".debug"
}
}
}
dependencies {
compile 'com.android.support:support-v4:19.1.0'
compile 'com.android.support:appcompat-v7:20.0.0'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.sothree.slidinguppanel:library:+'
provided 'com.google.android.gms:play-services:5.0.89'
compile project(':libraries:ViewPagerIndicator')
compile files('libs/mobileservices-1.1.5.jar')
compile files('libs/volley.jar')
compile files('libs/picasso-2.3.5-SNAPSHOT.jar')
compile 'com.microsoft.azure.android:azure-storage-android:0.3.1'
compile 'com.squareup.okhttp:okhttp:2.1.0'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.1.0'
compile('com.crashlytics.sdk.android:crashlytics:2.1.0@aar') {
transitive = true;
}
}
ANDROID_BUILD_MIN_SDK_VERSION=15
ANDROID_BUILD_TARGET_SDK_VERSION=19
ANDROID_BUILD_TOOLS_VERSION=20
ANDROID_BUILD_SDK_VERSION=19
我不是在引用Android5 SDK或兼容库v21,那么为什么它会困扰我这个资源键呢?
我不知道是什么原因造成的,但我也遇到了同样的问题,这个变通办法对我有效:
configurations.all {
resolutionStrategy {
force 'com.android.support:appcompat-v7:20.0.0'
}
}
在你的分级文件中的android{}块下面。
compile('com.sothree.slidinguppanel:library:+') {
exclude group: 'com.android.support', module: 'appcompat-v7'
}
我找到了这个链接并尝试应用相同的解决方案,但它不起作用,我仍然得到相同的错误 有人能帮忙吗?
我想应用像显示为。我知道它现在是私有样式,我不能将其作为父样式。 我该怎么做才能将这种风格融入我的DialogFragment? (我的目标是API 15,也许我想minSdk API 12)。 这向我报告了一个错误(家长,就像我读到的,它现在是私有的): 未找到与给定名称匹配的资源。 我只是读到必须“复制”风格的项目,但我没有发现它在哪里? 谁能帮帮我吗?我需要将该样式“克隆”到我的自定义样式。
当我尝试在Android Studio中启动我的应用程序时,它会产生如下3个错误: 错误:(3)检索项的父项时出错:找不到与给定名称“Android:TextApparance.Material.Widget.Button.Borderless.Colored”匹配的资源。 com.android.ide.common.Process.processException:org.gradle.Pro
我试图在Xamarin实现一个文件提供程序。窗体,我有一个问题加载我的文件路径文件。每当我试图构建该应用程序,我得到以下错误: 没有找到与给定名称匹配的资源(在“资源”处,值为“@xml/file_paths”) 该文件包含多个路径。xml文件位于xml文件夹下的resources目录中。任何帮助都将不胜感激。以下是我的相关档案: Android清单: 文件路径。xml 主要活动。反恐精英
平台:4.3 我是一个Android新手,非常感谢!