- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几个小时以来,我一直在努力解决这个问题。我尝试导入 2bard 的 AndroidPianoView
作为一个库项目(PianoView 和 PianoViewExample 都在里面),它们都有一个 support-v4 jar
在他们的libs
目录。
我的项目在 Android Studio 中。
从一个或两个目录中删除 jar 对我没有好处,我尝试按照 this popular question 中的解决方案进行操作没有成功。
这是运行 gradle -q:app:dependencies
的依赖关系树:
compile - Classpath for compiling the main sources.
+--- com.android.support:appcompat-v7:22.2.1
| \--- com.android.support:support-v4:22.2.1
| \--- com.android.support:support-annotations:22.2.1
\--- project :PianoViewExample
\--- project :PianoView
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.ajbowler.jamory"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.1'
compile project(':PianoViewExample')
}
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.library'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.library'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile project(':PianoView')
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexException: Multiple dex files define Landroid/support/v4/app/ActivityCompatHoneycomb;
at com.android.dx.merge.DexMerger.readSortableTypes(DexMerger.java:596)
at com.android.dx.merge.DexMerger.getSortedTypes(DexMerger.java:554)
at com.android.dx.merge.DexMerger.mergeClassDefs(DexMerger.java:535)
at com.android.dx.merge.DexMerger.mergeDexes(DexMerger.java:171)
at com.android.dx.merge.DexMerger.merge(DexMerger.java:189)
at com.android.dx.command.dexer.Main.mergeLibraryDexBuffers(Main.java:454)
at com.android.dx.command.dexer.Main.runMonoDex(Main.java:303)
at com.android.dx.command.dexer.Main.run(Main.java:246)
at com.android.dx.command.dexer.Main.main(Main.java:215)
at com.android.dx.command.Main.main(Main.java:106)
Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_25\bin\java.exe'' finished with non-zero exit value 2
exclude module: 'support-v4'
时会发生什么在主项目中
buildscript {
repositories {
mavenCentral() // or jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.ajbowler.jamory"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile project(':PianoViewExample')
compile('com.android.support:appcompat-v7:23.0.1') {
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
all*.exclude group: 'com.google.android.gms', module: 'play-services'
}
}
}
Error:(8, 8) error: cannot access TaskStackBuilder
class file for android.support.v4.app.TaskStackBuilder not found
Error:(10, 5) error: method does not override or implement a method from a supertype
Error:(12, 9) error: cannot find symbol variable super
Error:(13, 9) error: cannot find symbol method setContentView(int)
Error:(16, 5) error: method does not override or implement a method from a supertype
Error:(19, 9) error: cannot find symbol method getMenuInflater()
Error:(23, 5) error: method does not override or implement a method from a supertype
Error:(35, 16) error: cannot find symbol variable super
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
exclude
- 从 PianoView 模块之一中获取支持 jar,但该模块不起作用。
最佳答案
是的,今天刚刚修好了。就我而言,这是 Maven 中支持 v4 和支持 v7 之间的冲突。我所做的只是在主项目的支持 v7 标记中添加支持 v4 的排除标志。
我不得不从 v7 中排除 v4,因为我已经在使用它(v4 的导入位于我的 pom 文件的上方 5 行)。
例子:
http://www.thedevline.com/2014/06/unexpected-top-level-exception.html?m=1
编辑
类似帖子:
Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat .
希望能帮助到你。
Multiple dex files define Landroid/support/v4/ in android studio
关于java - 多个 Dex 文件定义 Landroid/support/v4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32600726/
因为我遇到了问题 java.lang.NoSuchMethodError: No static method isCtrlPressed(Landroid/view/KeyEvent;) 并与 jav
好吧,这很奇怪。当我在模拟器中运行应用程序时,我的 logcat 突然发生崩溃,之前我从未遇到过它,并且自上次在模拟器中运行应用程序以来我没有对我的应用程序进行任何更改几周前,它正在运行。 这是完整的
我将 Android Studio 更新到 2.2,我的项目将不再构建。我的 Activity 的 super.onCreate(savedInstanceState) 给我一个错误: java.la
完全错误 java.lang.NoSuchMethodError: No static method asAttributeSet(Lt/g/a/a;)Landroid/util/AttributeS
查看我的日志 Java.Lang.NoSuchMethodError: no non-static method "Landroid/content/Context;.getColorStateLis
I updated my android studio to version 3.3 canary 13 (latest as of this writing). I was prompted
我在执行 App 时遇到了这种类型的错误。 我的代码在支持库 24.2.0(Linux 操作系统中的 Android studio)中运行,当我在 Windows 操作系统中运行这段代码时出现了一些错
我使用UniversalImageLoader(displayImage方法)来加载图像 但它抛出 NoSuchFieldException 异常: No field mMaxWidth in cla
这是我见过的最奇怪的错误,在我遇到数据库泄漏错误后,我通过使用静态实例解决了它,现在我的 Activity 崩溃了,但不是每次都崩溃,只有当我多次使用它并使用另一个 Activity 时回到它,它会崩
我想尝试来自 google ( https://developer.android.com/arch ) 的新生命周期内容,但在应用打开时崩溃。我所做的就是添加依赖项。还有其他人遇到这个问题吗? 日志
几个小时以来,我一直在努力解决这个问题。我尝试导入 2bard 的 AndroidPianoView作为一个库项目(PianoView 和 PianoViewExample 都在里面),它们都有一个
我尝试将应用程序的支持库从26.0.2更新为27.1.0,但遇到以下错误。 Gradle apply plugin: 'com.android.application' android { c
我正在慢慢地尝试学习 android,但我遇到了一个我不太明白的挂断。我正在尝试使用一些全局变量。我扩展了应用程序类。我在 list 中添加了我认为正确的内容(类的名称是 Fortune Crunch
我将我的 android studio 更新到版本 3.3 canary 13(撰写本文时为最新版本)。我被提示更新我的项目的 gradle 版本,我将它更新到版本 3.3.0-alpha13 类路径
我无法编译项目得到以下错误编译: 错误:任务 ':myApp:dexDebug' 执行失败。 com.android.ide.common.internal.LoggedErrorException:
我目前正在尝试使用 Retrofit2 设置 Room。我想将 Retrofit2 中的数据插入房间数据库,但插入对我不起作用,应用程序崩溃了。我使用 Room Library 实现了三个组件:实体、
真的找不到词,我的项目只是不从一天编译到另一天。 这就是我所做的: 我下载并显示一个 PDF,然后我将其作为保存的 PDF 打印到设备上,然后崩溃发生了。 这是崩溃: at java.lang.Cla
在谷歌上玩这个错误 FATAL EXCEPTION: main Process: com.sonymobile.scan3d, PID: 13877 java.lang.NoSuchMethodErr
我在多个论坛和相关答案中看到了这个错误,我尝试了所有但它似乎对我的情况不起作用。让我简单介绍一下我的环境。我正在使用 sunjdk 1.7 和 androidsdk 21 在 mac osx 10.7
1.每当我在我的应用程序中滑动查看下一张图片时,应用程序就会崩溃,我不知道出了什么问题 2.这个问题在更新到 Android 30 之后才正常工作 java.lang.NoSuchMethodErro
我是一名优秀的程序员,十分优秀!