- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
MSBUILD : cordo-6ren">
我在 Visual Studio 2017 中有一个 cordova 应用程序项目,到目前为止一直在构建良好。没有对项目进行任何更改。
现在我们遇到了这个构建错误:
1>MSBUILD : cordova-build error : C:\Users\Adam.Akers\Documents\Visual Studio 2015\Projects\BCA\HH\BcaView\platforms\android\build\intermediates\res\merged\debug\values\values.xml:173: AAPT: Attribute "layout_anchorGravity" already defined with incompatible format.
1>MSBUILD : cordova-build error : C:\Users\Adam.Akers\Documents\Visual Studio 2015\Projects\BCA\HH\BcaView\platforms\android\build\intermediates\res\merged\debug\values\values.xml:172: AAPT: Original attribute defined here.
1>MSBUILD : cordova-build error : FAILURE: Build failed with an exception.
1>MSBUILD : cordova-build error : * What went wrong:
1>MSBUILD : cordova-build error : Execution failed for task ':processDebugResources'.
1>MSBUILD : cordova-build error : > com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\ProgramData\Microsoft\AndroidSDK\25\build-tools\25.0.3\aapt.exe'' finished with non-zero exit value 1
1>MSBUILD : cordova-build error : * Try:
1>MSBUILD : cordova-build error : Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
1>MSBUILD : cordova-build error : Picked up _JAVA_OPTIONS: -Xmx512M
任何帮助都会很棒。我已经删除了插件并检查了 SDK 的版本,我们没有做任何更改
最佳答案
AAPT: Attribute “layout_anchorGravity” already defined with incompatible format. AND 25.0.3\aapt.exe'' finished with non-zero exit value 1
根据错误信息“AAPT: Attribute “layout_anchorGravity” already defined with incompatible format.”,您似乎在应用程序中定义了一个名为 layout_anchorGravity
的自定义属性以某种方式与 android-namespaced font attribute introduced in Android O 冲突的代码.尝试重命名或删除该自定义属性,例如:
<declare-styleable name="AATextView">
<attr name="layout_anchorGravity" format="string"/>
</declare-styleable>
到
<declare-styleable name="AATextView">
<attr name="typeface" format="string"/>
</declare-styleable>
已认证:Error : Attribute “font” already defined with incompatible format
希望这对您有所帮助。
关于android - AAPT : Attribute "layout_anchorGravity" already defined with incompatible format. AND 25.0.3\aapt.exe'' 以非零退出值 1 完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50622202/
当我尝试使用 Crosswalk 为 Android 构建我的 Ionic 项目时我收到以下错误。没有人行横道一切正常.. platforms/android/build/intermediates/
谁知道这个截图 正确反射(reflect)了这个布局? 我没想到 TextView 会出现任何重叠,但我的预期可能不正确? 最佳答案 正如@ana 01 在评
在 xml 中,我可以使用 app:layout_anchorGravity="bottom|right|end" 作为 View 的属性。但现在我想以编程方式创建一个 View 。据我所知是这样的:
我使用的是android studion 3.4.1(最新版本)。我导入了一个项目,需要:安卓 SDK v23Android 构建工具 v23.0.2Android 支持存储库 v23.3.0 我已经
我在 Visual Studio 2017 中有一个 cordova 应用程序项目,到目前为止一直在构建良好。没有对项目进行任何更改。 现在我们遇到了这个构建错误: 1>MSBUILD : cordo
我是一名优秀的程序员,十分优秀!