archive

Archive does not appear in xcode4 organizer

限于喜欢 提交于 2019-12-17 15:32:51
问题 I am trying to submit an app to iTunes using the new xcode4. I followed the apple instructions but after doing product> archive, I still do not see anything in my organizer. Can anyone help? 回答1: I got the same problem. Took me whole night to solve. The doc gave the wrong instruction - therefore all your archives are created but their size is zero. You can verify this by going to their directory (...derived data...) Anyway, in the "Skip Install", set the value for "Release" as "NO" (the help

Linux removing folders older than 1 year and more than 3 files

▼魔方 西西 提交于 2019-12-17 10:00:50
问题 I'm writing an ant script to clean up an archive folder Here's how I need to clean it up: I need to delete folders old than a certain amount of days AND has more than 3 files in it. So for example if a folder is 300 days old but only has 3 files than it will NOT be deleted. I know I can ssh into the archive and do find -mtime +365 -exec rm -rf {} ;\ to delete files older than 1 year but I don't know how to account for the minimum of 3 files I also know that find -type f | wc -l will list the

iOS MobileVLCKit archive problems

爷,独闯天下 提交于 2019-12-14 03:43:08
问题 While trying archiving my project I got this error : ld: bitcode bundle could not be generated because '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit(VLCEmbeddedDialogProvider.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit' for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Tried to

iPhone/iPod Touch: Info.plist: Unable to verify icon dimensions, no icon found

北城以北 提交于 2019-12-14 02:28:20
问题 The reason I'm posting this is that I have tried all solutions written online and none has worked for me. What is it that I am missing? Anyone can help? While validating my app via the Archives tool in xcode 4.6 This is the error messages I am getting: iPhone/iPod Touch: Info.plist: Unable to verify icon dimensions, no icon found. You must define CFBundleIcons, CFBundleIconFiles, CFBundleIconFile, or provide a default Icon.png that is 57x57. It is also giving me the same error for iPad,

Extract useful file list (with path) from Visual Studio C++ project

不羁的心 提交于 2019-12-13 19:35:16
问题 I am working with a team on quite a few visual studio (2008) projects which share a lot of code. Some files are used by all projects, but some are only useful to 1 or 2. I am looking for a way to extract all useful files for one particular project. The principle we use is to share directories. Each project selects the shared directories it wants to use in the inclusion-directory list (inside the project properties). All such directories are created inside a root directory (directly or not).

bash: extract only part of tar.gz archive

有些话、适合烂在心里 提交于 2019-12-13 19:15:36
问题 I have a very large .tar.gz file which I can't extract all together because of lack of space . I would like to extract half of its contents, process them, and then extract the remaining half. The archive contains several subdirectories, which in turn contain files. When I extract a subdirectory, I need all its contents to be extracted with it. What's the best way of doing this in bash ? Does tar already allow this? 回答1: You can also extract one by one using tar zxvf file.tar.gz PATH/to/file

Include static lib in dynamic lib

最后都变了- 提交于 2019-12-13 15:02:50
问题 I have the following problem : several object files a1.o, a2.o, a3.o, ... an archive libxxxx.a. The archive libxxxx.a only contains object files : b1.o, b2.o etc... I would like to create a shared library (.so) from all the object files. Problem : If I use : g++ -shared libxxxx.a a1.o a2.o ... -o libnew.so g++ does understand that I want to link with the static library libxxxx.a and does not include all the symbols of the archive. A simple workaround is to first expand the archive using ar -x

creating *.epub with perl Archive::Zip — epubchecker error

*爱你&永不变心* 提交于 2019-12-13 14:25:17
问题 I am writing a perl script that will zip up a group of files from a given parent folder and create a *.epub file. The process works ok, and I am able to open the epub in adobe digital editions, but I get an epubchecker error: Required MTA-INF/container.xml resource is missing When I zip up the files manually (I'm on a winxp machine) there are no problems, but the perl created file throws the error. Here is the relevant code: #-------------------------------------------------------------------

IOS App archive and uploading

老子叫甜甜 提交于 2019-12-13 08:46:30
问题 When I tried to archive the app I just created, I received this error. Is there any guru who can help me explain this issue and give me instruction step by step how to fix this problem. Appreciate it. But there really is one in my keychain 回答1: If you sure your Profile is same as you selected in General Tab drop down. Also, you are confident that you are having the p12 for the profile. Do the following. Go to the Build Settings tab and navigate to codesign. In that section, there is CodeSign,

Adding (and overriding) files to compressed archive

∥☆過路亽.° 提交于 2019-12-13 07:32:58
问题 Well, it is as simple as the title. I tried for many hours to make a method that will take the archive file and a File[] (the files that will be added to the archive) and I only made it to the point that the method adds new files into the archive, but if a file with the same name of a file that I'm trying to add already exists, it throws me an error. I tried searching for a solution but didn't find any. Can you help me make a method that will take two parameters: File archive, File[]