- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是初学者,我使用 Android Studio。一个问题一直困扰着我。
一直显示错误信息
Element uses-permission#com.google.android.providers.gsf.permission.READ_GSERVICES at AndroidManifest.xml:46:2-95 duplicated with element declared at AndroidManifest.xml:35:5-98
Element uses-permission#android.permission.ACCESS_COARSE_LOCATION at AndroidManifest.xml:47:2-78 duplicated with element declared at AndroidManifest.xml:22:5-81
Element uses-permission#android.permission.ACCESS_FINE_LOCATION at AndroidManifest.xml:48:2-76 duplicated with element declared at AndroidManifest.xml:23:5-79
tools:replace specified at line:67 for attribute tools:value, but no new value specified
Element meta-data#com.google.android.gms.version at AndroidManifest.xml:85:9-87:39 duplicated with element declared at AndroidManifest.xml:81:10-83:69
Validation failed, exiting
Manifest merger failed with multiple errors
还有红线
uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"
Mock locations should only be requested in a test or debug-specific manifest file (typically src/debug/AndroidManifest.xml) less... (Ctrl+F1)
Using a mock location provider (by requiring the permission android.permission.ACCESS_MOCK_LOCATION) should only be done in debug builds (or from tests). In Gradle projects, that means you should only request this permission in a test or debug source set specific manifest file. To fix this, create a new manifest file in the debug folder and move the <uses-permission> element there. A typical path to a debug manifest override file in a Gradle project is src/debug/AndroidManifest.xml.
我试过:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.Hi.Hello">
<application
android:name="com.Hi.Hello.app.App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:hardwareAccelerated="true"
android:theme="@style/AppBaseTheme"
tools:replace="value,icon,label,theme">
但我无法解决。权限问题和 list 合并失败,出现多个有关帮助的错误!!
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.Hi.Hello"
minSdkVersion 14
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':bFAB')
compile project(':bPhotoView')
compile project(':bSlidingLayer')
compile project(':bSlidingMenu')
compile project(':bUniversalImageLoader')
compile project(':bUtils')
compile project(':bTwoWayView')
compile project(':facebookSDK')
compile project(':kakaoSDK')
compile files('libs/httpclient-4.2.3.jar')
compile files('libs/httpclient-cache-4.2.3.jar')
compile files('libs/httpcore-4.2.2.jar')
compile files('libs/httpmime-4.2.3.jar')
compile files('libs/jsoup-1.7.3.jar')
compile files('libs/gcm.jar')
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.google.code.gson:gson:2.2.2'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.google.android.gms:play-services-ads:8.1.0'
compile 'com.google.android.gms:play-services-identity:8.1.0'
compile 'com.google.gcm:gcm-server:1.0.0'
}
最佳答案
我认为问题就像错误消息描述的那样:
tools:replace specified at line:67 for attribute tools:value, but no new value specified
在您的应用程序标签中,您没有为“值”标签设置替换属性:
<application
android:name="com.Hi.Hello.app.App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:hardwareAccelerated="true"
android:theme="@style/AppBaseTheme"
tools:replace="value,icon,label,theme">
因为我不知道应用程序标签中的“android:value”标签,我建议更改 tools:replace-node:
tools:replace="icon,label,theme"
有关 list 合并的更多信息可在此处找到: http://tools.android.com/tech-docs/new-build-system/user-guide/manifest-merger
关于android - permission.ACCESS_MOCK_LOCATION 红线.. or Manifest merge failed with multiple errors,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33493172/
我没有做过广泛的测试,但有证据表明应用程序 list 中的 android.permission.ACCESS_MOCK_LOCATION 并不像人们假设的那样工作(即如果存在 - 允许模拟位置提供者
我有一个异常(exception) java.lang.RuntimeException: Unable to start service ... java.lang.SecurityExceptio
从 Eclipse 导入项目到 Android Studio 时报如下错误: 可能导致问题的原因是什么?知道如何处理这个问题吗? 问候 最佳答案 What may cause the problem?
这是问题的秘诀: 在调试 list 中添加模拟位置权限 在手机中安装应用程序的调试版本(在 Gradle 中:debug { debuggable true }) 尝试使用 adb 授予权限:adb
我是初学者,我使用 Android Studio。一个问题一直困扰着我。 一直显示错误信息 Element uses-permission#com.google.android.providers.g
我是一名优秀的程序员,十分优秀!