I have a working app using Xcode/phonegap. It's in the store in version 1.
What is the best way to make version 2 ?
Do I need to create a new project ? If so, can I inherit from all the things I've specified in version 1 ?
Thank you.
Xcode Version 4.6.1 - Phonegap 2.6
To change the version of your project you need to
Open project
Go to Resources
Open -Info.plist
Change bundle version string
You can also edit this file without opening the project.
The file is in the folder, sibling with the www folder.
Related
I have followed the the instructions from Upgrading existing application manually
Its says :
If you are using the latest interim fix for IBM MobileFirst Platform
Foundation, link the IBMMobileFirstPlatformFoundation.framework and
"openssl.framework" files
My question is :
I cant find openssl.framework in Xcode 7.1. How to get this? (Does it obtain from this link?)
Why Worklight 7.1 need this?
Our Worklight version is : 7.1.0.00-20151107-1647
I am not sure those instructions are correct; see the instructions in the following tutorial: https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-1/foundation/hello-world/configuring-a-native-ios-application-with-the-mfp-sdk/#addingNativeSDK
openssl.framework is not mentioned
I would change from manually setting it up to the new approach of using CocoaPods; going forward that is the only way to add the MFP framework.
It is inside the Framework folder. When i created the projects, the following files are added to Framework folder:
IBMMobileFirstPlatformFoundationHybrid.framework
IBMMobileFirstPlatformFoundationJSONStore.framework
openssl.framework
SQLCipher.framework
You might need to manually drag and drop those files.
I update Xcode to 6 and Cordova to 4.1.2, but changes in HTML or CSS are never visible. To see changes I have to modify directly file stored at {projectPath}/platform/ios/www (but
Xcode update file stored at {projectPath}/www )
I have try to modify copy-www-build-step.sh like XCode Build not updating JS and HTML but without success.
If I make a cordova build ios, ok file are correctly copied but all signing configuration are lost.
I use Xcode for packaging and for submit.
May be there is a bug with latest version?
Yes i can modify html/css stored in Staging repository, but It's only a workaround ... and I think that file have to be copied from {projectPath}/www, any suggestions ?
Use cordova prepare when you make changes to your project's www code. This will copy it down to the Xcode staging versions. You can either do this manually, or you can set it up in Xcode as a build step. cordova build ios does this as part of the build step, which is why that command seems to work for you.
I am new in codeIgniter and trying to do the project in netbeans 8.0. The problem is, I can't download the plugin for codeigniter support. It shows some error like
"Some plugins require plugin PHP Annotation API to be installed."
I checked here for a solution and got this - "http://ellislab.com/forums/viewthread/184716/"
but the thing which I need is this - "http://alielwafdy.wordpress.com/2012/07/28/codeigniter-support-in-netbeans/".
this supports only up to netbeans 7.3.1
what should I do for netbeans 8.0. Please help
I already checked this question. But it is of Netbeans Version - 7. I am asking this question to find if there is an option in Netbeans 8, So this is not a duplicate
Alternate way,
Create folder "CI_Auto_Complete" in outside the project. (ie. like anther project)
place a php file called "CI_AUTO_COMPLETE.php",
copy and paste the code from http://blog.bobbyallen.me/wp-content/uploads/2012/08/netbeans_autocomplete_codeigniter.txt
Add "CI_Auto_Complete" folder to the include path.
Right on click pjt --> properties --> include path --> Add folder.
Still there is no direct plugin available even though you can use auto complete class which will helps you for auto complete words.
copy the php code from http://blog.bobbyallen.me/wp-content/uploads/2012/08/netbeans_autocomplete_codeigniter.txt
save the file into your CodeIgniter Project’s NetBeans folder (in the root, so in the same folder as project.properties and project.xml)
If you have NetBeans currently open you’ll need to restart it for the changes to take effect!
I've used a previous version of Flurry SDK with xCode 3.2.5 in my mobile application.
Recently, I upgraded to Mac OSX Lion and xCode 4.1. However, I'm finding it hard to integrate the Flurry SDK 3.0.0 with xCode 4.1.
I copied the FlurryAnalytics directory to my project directory, then added it in my xCode project. I changed every occurrence of FlurryAPI with FlurryAnalytics.
The ERROR that I get is:
"*No such file or directory FlurryAnalytics.h"
when I try to add
import "FlurryAnalytics/FlurryAnalytics.h"
in my Plugins/Flurry.m file or Classes/MyApplicationAppDelegate.m
I'd really appreciate some instructions to add FlurryAnalytics SDK 3.0.0 to my Xcode 4 project.
Well, the solution was simple.
I just had to add [drag and drop the folder] the Flurry SDK library/folder with the option "Create groups for any added folder". So that the folder gets added as a yellow folder.
My install of Xcode 3.2.3 created a project with different template files than those of my classmates. We all created a navigation-based app that used core data.
I suspect that my templates are somehow left over from previous installs, whereas my classmates all have current templates.
Anyone else experienced this? Any suggestions for making sure I have the current templates?
If there are copies or customized versions in
~/Library/Application Support/Developer/Shared/Xcode/
they will be preferred over global (updated) versions, see e.g. this question.