Questions tagged «build-error»

12
是什么导致默认情况下导入的Eclipse中的Maven项目使用Java 1.5而不是Java 1.6,并且如何确保不使用Java 1.5?
我导入了一个Maven项目,即使我将1.6配置为我的Eclipse默认值,它也使用Java 1.5 Preferences->Java->Installed JREs。 当我将Maven项目更改为使用1.6 JRE时,它仍然存在项目使用Java 1.5时遗留下来的构建错误(我在以下内容中描述了这些构建错误:我在命令行中使用m2eclipse而不是maven2进行了构建错误-我的m2eclipse配置错误吗?) 我将删除该项目,然后重试,但是这次我要确保它从一开始就使用Java 1.6,以查看这是否消除了构建问题。 导入时如何确保项目使用Java 1.6?

30
项目构建中的CocoaPods错误
我无法建立使用CocoaPods的项目。我收到以下错误: diff: /../Podfile.lock: No such file or directory diff: Manifest.lock: No such file or directory error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.` $ pod install似乎工作正常,Pods并向我的工作区添加了一个项目。我已经尝试过了,$ pod update但这无济于事。 似乎PODS_ROOT没有设置。 Podfile: platform :ios, '6.0' workspace 'Example.xcworkspace' xcodeproj 'example/Example.xcodeproj' pod 'TestFlightSDK', '~> …

21
如何解决iPhone中的“命令/ bin / sh失败,退出代码为1”的问题
我在应用程序中使用了可可静态库。编译库时,出现以下错误: Shell Script invocation error:can't open input file: /Users/sijuthomas/Library/Developer/Xcode/DerivedData/SCXML2- bbttehupryhijphhjdiemcytkvgy/Build/Products/Debug-iphonesimulator/ libSCXMLParser.a (No such file or directory) Command /bin/sh failed with exit code 1 我怎样才能解决这个问题?

26
Android Studio 3.0执行任务失败:无法合并dex
android studio在执行构建时出现以下构建错误: 错误:任务':app:transformDexArchiveWithExternalLibsDexMergerForDebug'的执行失败。java.lang.RuntimeException:java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并dex” 我的app:build.gradle文件: apply plugin: 'com.android.application' android { compileSdkVersion 26 buildToolsVersion '26.0.2' defaultConfig { applicationId "com.pdroid.foodieschoice" minSdkVersion 16 targetSdkVersion 25 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.