archive

Invalid Swift Support / The SwiftSupport folder is empty

匿名 (未验证) 提交于 2019-12-03 02:06:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Environment: Xcode 7 GM I uploaded iOS app successfully using Xcode without error. This app is written in Objective-C and Swift. However, immediately after successful upload, I got this email from Apple stating this error: Invalid Swift Support - We have discovered one or more issues with your recent delivery for XXXXX(my app name). To process your delivery, the following issues must be corrected: Invalid Swift Support - The SwiftSupport folder is empty. Rebuild your app using the current public (GM) version of Xcode and resubmit it. Once

Linking archives (.a) into shared object (.so)

匿名 (未验证) 提交于 2019-12-03 02:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm compiling some shared objects file into an archive.a : $ g++ -c -Iinclude/ -fPIC -O0 -o object1.o source1.cpp $ g++ -c -Iinclude/ -fPIC -O0 -o object2.o source2.cpp $ ar rvs archive.a object1.o object2.o r - object1.o r - object2.o So far so good. The resulting archive.a has a good size of some KB. A dump with nm shows that the corresponding object-files are contained within the files. Now I'm wanting to compile several of these archives into a shared object file. g++ -g -O0 -Iinclude/ -I/usr/include/somelibrary -shared -o libLibrary.so

How to build an archived package on R 3.0.0

匿名 (未验证) 提交于 2019-12-03 02:03:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Recently R 3.0.0 was rolled out. One of the requirements was that " Packages need to be (re-)installed under this version (3.0.0) of R. " The problem occurs when you have packages that have been archived. In an OS independent way how do you build packages like uroot ? As you can see the package is archived. 回答1: The easiest way to build a package from the archive is to use devtools: library(devtools) install_url("http://cran.r-project.org/src/contrib/Archive/uroot/uroot_1.4.tar.gz") There are three challenges: You need to have a working

Create .ipa for iPhone

做~自己de王妃 提交于 2019-12-03 02:01:51
问题 I developed one application for iPhone. After I build I got .app file in build folder. My application name is Myapp, then i got Myapp.app file in the build folder. My problem is i want to create the .ipa file. how is that.. it is for to install jailbraked iPhone.. 回答1: Create a folder named Payload . Copy Myapp.app (from products of your project) into the Payload directory. Right click and Compress the Payload directory. Rename the zip file to Myapp.ipa . ** Update ** This answer is very old.

xcode is creating generic xcode archive instead of iOS App Archive

匿名 (未验证) 提交于 2019-12-03 01:55:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm a beginner in iPhone development and I tried to create an ipa with my profile and valid certificate but xcode is creating a generic xcode archive file instead of iOS app archive because in my code there are two .xcodeproj in there. And from one of the stack overflow answer I followed the following steps: Skip install is NO for the main project target Skip install is YES for framework (sub-projects) targets Sub-projects need to have Copy Headers in Project not Public Installation Directory under Deployment is valid (

Unable to submit archive including Here Maps Premium SDK with Xcode 8.2.1

匿名 (未验证) 提交于 2019-12-03 01:38:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: archive upload failure messages screenhot Xcode was failing to submit a project including dynamic library "NMAKit.framework" required for Here Map Premium for iOS functionality. (uploading the sample project included in Here Maps Premium SDK for iOS to avoid side effects caused by my project leading also to upload failure) Bitcode was disabled in project's build settings. I'am using the latest Xcode Version 8.2.1. I don't have trouble submitting the app without NMAKit.framework. It seems like the actual version (Here SDK V. 3.3) of

Jenkins: Command /usr/bin/codesign failed with exit code 1

匿名 (未验证) 提交于 2019-12-03 01:34:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am able to archive ios project using below commands cordova build ios --device --debug and cordova build ios --device --release But when i try to do same from jenkins i am getting below error. 11:08:01 SecKey API returned: -25308, (null)/Users/Jenkins/Library/Developer/Xcode/DerivedData/GRC_Pulse-ebufuetkmalmfxbiegclmzuryhrm/Build/Intermediates/ArchiveIntermediates/GRC Pulse/InstallationBuildProductsLocation/Applications/GRC Pulse.app: unknown error -1=ffffffffffffffff 11:08:01 Command /usr/bin/codesign failed with exit code 1 11:08:01 11

Creating zip or tar.gz archive without exec

匿名 (未验证) 提交于 2019-12-03 01:33:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Is there is any safe way to create a zip archive, or tar.gz from php without using exec command ? thanks 回答1: If you want to create tar.gz and you are using PHP 5.3+, you can use PharData class: try { $a = new PharData ( 'archive.tar' ); // ADD FILES TO archive.tar FILE $a -> addFile ( 'data.xls' ); $a -> addFile ( 'index.php' ); // COMPRESS archive.tar FILE. COMPRESSED FILE WILL BE archive.tar.gz $a -> compress ( Phar :: GZ ); // NOTE THAT BOTH FILES WILL EXISTS. SO IF YOU WANT YOU CAN UNLINK archive.tar unlink ( 'archive.tar' );

Xcode 4 & three20 & create IPA archive: No such file or directory

匿名 (未验证) 提交于 2019-12-03 01:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: In Xcode 3.2.5 I use "Build And Archive" to create an IPA file without any problems. How can I do that in Xcode 4? I think I have to use "Product -> Archive", but I get over 100 error messages in the three20 framework. Most are "No such file or directory". ("Product -> Build For -> Build For Archiving" works. No errors.) For example, this is the first error message: ../ scripts / Protect . command : line 23 : cd : /Users/ [ USERNAME ]/ Library / Developer / Xcode / DerivedData /[ PROJECTNAME ]- blabla / ArchiveIntermediates /[

How to get rid of the warning “file was built for unsupported file format” when linking with a static library?

匿名 (未验证) 提交于 2019-12-03 01:28:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I've an application which includes an external library I developed, and I'm getting the following warning message every time I compile using the device as target: mylib-release-iphonesimulator.a, file was built for unsupported file format which is not the architecture being linked (armv7). I've 2 versions of the library, both added into the project. One built for the iphonesimulator and the other for iphoneos. Even though it works well on any target (seems the compiler takes the correct version of the library depending of the