titanium

“Unable to download application. <Appname> could not be installed at this time”

旧城冷巷雨未停 提交于 2019-11-29 02:04:28
I'm almost dead now. I've been trying for about 2-3 weeks to fix that problem, but still no result. Hope anyone is able to help me: I'm writing iOS Apps with Titanium Studio. Until Mac OS X 10.6.8 with Xcode 4.2 everything worked just fine. I was perfectly able to build apps in Xcode und deploy them In-House in our Enterprise. Now I've upgraded to OS X 10.8.2 with Xcode 4.5 and there we go... Apps can still be built and are runnable on the iOS Simulator, but if I try now to get the app on some devices, I get a message "Unable to download application. -Appname- could not be installed at this

Desktop application development with Javascript and HTML

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 17:06:33
I am looking for Titanium Appcelerator alternatives for Desktop application development with HTML and JavaScript. I want to convert a web app to a desktop application. Hence, there will be a lot of server interaction. Appcelerator was a good choice, but it looks like the company is no longer interested in the Desktop SDK. Also, ajax request from Appcelerator does not retain cookies. I read that Adobe Air can be used for desktop app development, but I don't want to use flash. How good is XULRunner? Will it allow features like Growl notificaiton and creating tray icons? Will I be able to develop

PhoneGap vs. Titanium

给你一囗甜甜゛ 提交于 2019-11-28 15:55:57
问题 PhoneGap and Titanium allow you build native iPhone Apps based on HTML and JavaScript. Has anyone gained experience with both? What are the differences? 回答1: There is a pretty lengthy discussion about PhoneGap VS Titanium (and Corona) on StackOverflow already that might be useful. One of the big differences is that PhoneGap is MIT licensed and Titanium is (just recently changed) Apache licensed. 回答2: This article is a good summary of the practical and philosophical differences. Note its from

How to check if array element exists or not in javascript?

瘦欲@ 提交于 2019-11-28 15:29:17
I am working with Titanium, my code looks like this: var currentData = new Array(); if(currentData[index]!==""||currentData[index]!==null||currentData[index]!=='null') { Ti.API.info("is exists " + currentData[index]); return true; } else { return false; } I am passing an index to the array currentData . I am still not able to detect a non-existing element using above code. Use typeof arrayName[index] === 'undefined' i.e. if(typeof arrayName[index] === 'undefined') { // does not exist } else { // does exist } yeswanth var myArray = ["Banana", "Orange", "Apple", "Mango"]; if (myArray.indexOf

HTTP authentication between devise and iphone app

你。 提交于 2019-11-28 15:15:18
I'm new to ruby on rails but I want to send the data from my SQlite database from my iphone app to the rails web app. Like a "sync" service. I'm using devise for authentication for the web app. I enabled basic HTTP authentication and I can curl into the website for xml or json data. I can also upload data to the website when I set the post headers to JSON and with username and password. Here's where I'm stuck. 1) How do I keep the user signed in after the 1st login? Do I use http authentication every time I send data to the website? I've read about token authentication but I'm not sure how to

Titanium Mobile: cant navigate between pages

雨燕双飞 提交于 2019-11-28 14:39:19
i am new to Titanium and i am have 2 seemingly simple problems while trying to use it for the Android. 1) i am trying to navigate to the next page on click of a button. but instead it is showing me a blank black screen. i know my second page CreateNewMeetup.js is correct because i tried displaying it as the landing page of my app and it works. my codes are as follows:- ApplicationWindow.js ... var button = Ti.UI.createButton({ height:44, width:'auto', title:'Create New Meetup', top:20 }); self.add(button); button.addEventListener('click', function() { var newWindow = Ti.UI.createWindow({ url :

Titanium module imagefactory won't work

时光怂恿深爱的人放手 提交于 2019-11-28 14:28:17
After several hours, and still not working image module, I hope for som help here. I'm trying to install/use the imagefactory module. 1) I installed it globaly using Titanium studio (tried both from github and appcelerator) but it doesn't show upp when I look for modules in the terminal ('Titanium module'), or in my tiapp.xml when trying to include the module. The plugin installs itself in the directory Titanium/ mobilesdk modules ti.imagefactory-stable <-- here I tried to move the folder to the folders Titanium/moduels/android/ti.imagefactory-stable and Titanium/modules/ios/ti.imagefactory

the value of a query string parameter may not contain a '=' delimiter

不打扰是莪最后的温柔 提交于 2019-11-28 12:09:14
问题 Now I simplify the problem. I try to directly copy and paste the query to confrim it use %3D instead of '=' var xhrSNS = Ti.Network.createHTTPClient({ onload :function(e) { Ti.API.info("test Post query:" + JSON.stringify(e)); Ti.API.info(this.responseText); }, onerror : function(e){ Ti.API.debug("test Create PlatForm Endpoint registerPush error:" + e.error); Ti.API.info(this.responseText); } }); getUrl = "http://sns.ap-northeast-1.amazonaws.com?AWSAccessKeyId=AAAAAAAAAAAAAAA&Action

how to install sdk Android with titanium

主宰稳场 提交于 2019-11-28 12:05:59
问题 I download the last version of titanium but I can't add sdk Android , how do that I download sdk but the problem still here (Althoug I download sdk, the window shows an message that an it can't find the sdk) I read one sentence which maybe the solutioin of this problem the sentence is : "For Studio 3.2.0 and prior, to setup the platform SDKs, use the Studio Dashboard view as described in the Legacy Setup". Maybe I have to use Studio Dashboard for add sdk . Please can anyone help? 回答1: You can

Receive push notifications from APNS to Titanium (iOS) App without using Appcelerator Cloudpush (ACS)?

无人久伴 提交于 2019-11-28 10:50:07
问题 I'm now responsible for a initial release of an app for iOS and Android. The developer that started the work has left the company and we are left with an incomplete Titanium application to finish. Once this app is finished we do not plan to continue using Titanium. We need to add push notifications to this app. We have enabled Android push notifications using the standard GCM push servers using http://iamyellow.net/post/40100981563/gcm-appcelerator-titanium-module or https://marketplace