Posts

Showing posts from June, 2015

Which Android Devices are mostly used in US?

Looks like S5 is the most popular till date. http://www.appbrain.com/stats/top-devices-by-country

Any Good Books for Titanium Development?

Here is the mobi and pub version of the book https://developer.appcelerator.com/question/144237/ebook-building-mobile-applications-with-titanium-as-pdf

How to create responsive UI in Titanium?

Here is the idea and the link to stack overflow article   var per40 = Math.floor(Titanium.Platform.displayCaps.platformWidth * 0.4);   var btngeorgia=Titanium.UI.createButton({    //stuff     width:per90,     //stuff });     http://stackoverflow.com/questions/10413942/using-percentages-in-titanium-for-fluid-responsive-design  

What is the difference between clause and phrase

Phrase and Clause, Difference in Phrase and Clause http://www.studyandexam.com/clause-phrase.html

How to go about using the M-830B digital multimeter?

http://jbryant.eu/pages/DMM.htm

Appcelerator Studio Install is getting Error - "Appcelerator CLI is currently installing or upgrading. Please wait until it has finished"

Hi  Rebooting is not solving this issue either. I tried to manually update it using terminal and it worked. sudo npm install -g appcelerator appc setup Thanks to the link below https://community.appcelerator.com/topic/509/appceleratorstudio-impossible-to-update-appcelerator-cli-4-0-0-21-may-2015/4

Is Titanium no free anymore?

Well, Titanium as we know it will remain free but the support for it will eventually dwindle. Also if you plan to continue to use it you may have to build your own image from source on Github. However if you are an existing user you can use Appcelerator Studio as an Indie User. However it is not clear yet if you can publish an iPA or APK without the $39/month seat. This will give you some information http://www.appcelerator.com/appcelerator-platform-is-coming-to-you/

Any way to Delete an App in iTunes Connect?

You can delete your app if there is at least one approved version of the app. Apps not approved yet can't be deleted. Instead remove the build and reject the app Here is the link for more details https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/TransferringAndDeletingApps.html

How to reclaim an app name SKU in iTunes Connect?

Look at this link below http://hesh.am/2012/01/recovering-a-deleted-app-name-in-itunes-connect/

Why do we see Red Screen of Death on Distribution builds?

This is not supposed to be shown on distributed builds. Try rebuilding the application correctly. https://developer.appcelerator.com/question/148945/application-error-red-screen-shows-up-in-distributed-app http://stackoverflow.com/questions/16740862/is-there-a-way-to-override-the-unhandled-exceptions-handler-in-titanium-appceler

Do iOS Apps get notification in foreground?

http://stackoverflow.com/questions/14872088/get-push-notification-while-app-in-foreground-ios

Titanium build fails with 'Invalid "--pp-uuid" value' error

Here is a simple answer https://jira.appcelerator.org/browse/TIMOB-16325

Where to find the .JS code in my titanium project once it is built in Xcode?

Simply states the JS code is compiled almost one to one into the representative symbols in native platform.  There's still an interpreter running in interpreted mode otherwise things like dynamic code wouldn't work.  However, its much faster, much more compact and it's about as close to pure native mapping as you can get. These are the detailed steps that happen beneath the hood Titanium takes your Javascript code, analyzes and preprocesses it and then pre-compiles it into a set of symbols that are resolved based on your applications uses of Titanium APIs.  This Symbol Table maps to the underlying Titanium library symbols to understand which APIs (and related dependencies, frameworks, etc) specifically your app needs.  In iOS, the symbol maps to a true C symbol that ultimately maps to a compiled .o file.  For Java, well, it's more or less a .class file, etc.  Then it invokes the SDK compiler (i.e. GCC for iPhone, Java for Android) to compile your application into the fi

Any Video on Upload iOS App to Store?

Thanks to our friend Vimal to send this to us https://www.youtube.com/watch?v=6uX7B8ZfMiw

How to troubleShoot a Failed Signature Validation on App Store?

TroubleShoot a Failed Signature Validation on App Store https://developer.apple.com/library/ios/technotes/tn2318/_index.html#//apple_ref/doc/uid/DTS40013777-CH1-ROOTCAUSE