SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Building Mobile Apps with
 Titanium Appcelerator
         Part Two
         Aaron K. Saunders
  Appcelerator Platform Evangelist
 Founder/CTO Clearly Innovative Inc.
Who Am I?
• Founder/CTO Clearly Innovative Inc.
• Appcelerator Platform Evangelist
• 25+ years experience in software
  development field
  – Recently Enterprise Web Development w/Java &
    Open Source Technologies
• Mobile App Development with Appcelerator
  for last two years
• Top Contributor on Appcelerator Q&A Forum
Here Comes The Marketing Pitch
Titanium Is…
• A cross-platform JavaScript-based
  framework
• With access to native OS and hardware
  features
• Modular and extensible
• Free
Titanium exploits the native
ecosystem
Native User Experience
                                   Multimedia
Native performance + Native UI
                                   Camera, video camera,
(tables, animations, gestures…e
                                   streaming/device audio/video
tc.)
Location-based services            Analytics
Augmented
                                   Track usage patterns and
reality, geolocation, compass, n
                                   adoption
ative maps

Social sharing                     Titanium modules
Facebook, Twitter, Yahoo YQL.      Appcelerator Marketplace for
Native email/address book          add-on functionality

Data
                                   Development tools
Local
                                   Titanium Studio, integration
SQLite, filesystem, properties
                                   with native SDK tools
data store, web services
Titanium is easier
// Objective-C
UIAlertView *alert = [[UIAlertView alloc]
     initWithTitle:@"Alert"
     message:@"Hello World"
     delegate:nil
     cancelButtonTitle:@"OK"
     otherButtonTitles:nil];
[alert show];
[alert release];
Titanium is easier
// Java/Android
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Hello World")
      .setCancelable(false)
      .setPositiveButton("OK", new DialogInterface.OnClickListener(){
•          public void onClick(DialogInterface dialog, int id) {
              MyActivity.this.finish();
           }
      });
AlertDialog alert = builder.create();
Titanium is easier
// Titanium
alert("Hello World");




 … and it’s cross platform!
Powered by Titanium
Applications:
• NBC apps
• NYS Senate
• Wunderlist
• GetGlue
Companies:
•   Kellogg’s
•   NBC/Universal
•   eBay and PayPal
•   Anheuser Busch
•   Jaguar
•   … and many more
Back To The Code
Use The Tools
• Titanium Studio is your friend
  – Eclipse Based IDE
  – Integrated debugger
  – Code completion
  – Project Management
  – SVN/Git/Terminal Integration
  – Xcode Build and Deployment Integration
• Command Line still available
Demonstration
Use The Documentation
• QA Forum
  – Lots of content
  – Improved overall site search capabilities
  – Monitored by Developer Relations
• Appcelerator Wiki
  – Recent restructuring, lots of good stuff and
    sample code
• FREE, FREE, FREE Online Videos for
  Appcelerator Certification Exam w/Code
Use The Modules
•   Appcelerator Marketplace
•   Search Github
•   Ask in the forums
•   Build Your Own
A Change is Upon Us
• Not Recommended
  – Write your app like Kitchen Sink
  – multiple context application structure
  – use of Ti.Include
• Recommended
  – CommonJS modules for application structure
  – Single Application namespace
  – Pass variables into modules
  – Event Based Programming
CommonJS Application
                      Structure
// app.js

// commonjs module for database functionality
var db = require('db');

// commonjs module for user interface functionality
var ui = require('ui');

// call methods on objects
db.createDb();
var tabGroup = ui.createAppTabGroup();
tabGroup.open();
CommonJS Module Structure
// db.js
// variable scope is local to this module
var DATABASE_NAME = 'todo';

// exports indicates that the method is public
exports.createDb = function() {
      Ti.Database.install('todo.sqlite', DATABASE_NAME);
};

exports.selectItems = function(_done) {
    var retData = [];
    var db = Ti.Database.open(DATABASE_NAME);
    var rows = db.execute('select ROWID, * from todo where done = ?', _done);
    while (rows.isValidRow()) {
      retData.push({item:rows.fieldByName('item'), id:rows.fieldByName('ROWID')});
      rows.next();
    }
    db.close();
    return retData;
};
Examples?
• Sample Projects will soon be added to
  Titanium Studio
• See Wiki Page
  – http://wiki.appcelerator.org/display/guides
    /CommonJS+in+Titanium
• Android & iOS Compatible
  – RSS Feed Application
  – Map/Location Based Application
  – TODO database Application
Demonstration
Questions
     Aaron K. Saunders
aaron@clearlyinnovative.com
 blog.clearlyinnovative.com
      @aaronksaunders

Weitere ähnliche Inhalte

Was ist angesagt? (8)

Android 3.1 - Portland Code Camp 2011
Android 3.1 - Portland Code Camp 2011Android 3.1 - Portland Code Camp 2011
Android 3.1 - Portland Code Camp 2011
 
Appcelerator Titanium Intro
Appcelerator Titanium IntroAppcelerator Titanium Intro
Appcelerator Titanium Intro
 
Introduction to Google App Engine
Introduction to Google App EngineIntroduction to Google App Engine
Introduction to Google App Engine
 
Android - Open Source Bridge 2011
Android - Open Source Bridge 2011Android - Open Source Bridge 2011
Android - Open Source Bridge 2011
 
Mobile for the rest of us
Mobile for the rest of usMobile for the rest of us
Mobile for the rest of us
 
Android Workshop 2013
Android Workshop 2013Android Workshop 2013
Android Workshop 2013
 
Android Development for Beginners with Sample Project - Day 1
Android Development for Beginners with Sample Project - Day 1Android Development for Beginners with Sample Project - Day 1
Android Development for Beginners with Sample Project - Day 1
 
AR with vuforia
AR with vuforiaAR with vuforia
AR with vuforia
 

Andere mochten auch

Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Aaron Saunders
 
StackMob & Appcelerator Module Part One
StackMob & Appcelerator Module Part OneStackMob & Appcelerator Module Part One
StackMob & Appcelerator Module Part One
Aaron Saunders
 

Andere mochten auch (12)

PaaS + Appcelerator = WIN
PaaS + Appcelerator = WINPaaS + Appcelerator = WIN
PaaS + Appcelerator = WIN
 
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
Amsterdam Titanium User Group - Cloud Services for Apps Nov 2013
 
Clearly Innovative Inc Capabilities
Clearly Innovative Inc CapabilitiesClearly Innovative Inc Capabilities
Clearly Innovative Inc Capabilities
 
Identify & Unlock Your Mobile Strategy
Identify & Unlock Your Mobile StrategyIdentify & Unlock Your Mobile Strategy
Identify & Unlock Your Mobile Strategy
 
StackMob & Appcelerator Module Part One
StackMob & Appcelerator Module Part OneStackMob & Appcelerator Module Part One
StackMob & Appcelerator Module Part One
 
SubAid User Guide - Overview
SubAid User Guide - OverviewSubAid User Guide - Overview
SubAid User Guide - Overview
 
modeveast 2012 Appcelerator Alloy & Cloud Services Presentation
modeveast 2012 Appcelerator Alloy & Cloud Services Presentationmodeveast 2012 Appcelerator Alloy & Cloud Services Presentation
modeveast 2012 Appcelerator Alloy & Cloud Services Presentation
 
Mobile Application Workshop - So You Want To Build a Mobile App?
Mobile Application Workshop - So You Want To Build a Mobile App?Mobile Application Workshop - So You Want To Build a Mobile App?
Mobile Application Workshop - So You Want To Build a Mobile App?
 
Quick Way to work with Models and Alloy in Appcelerator Titanium
Quick Way to work with Models and Alloy in Appcelerator TitaniumQuick Way to work with Models and Alloy in Appcelerator Titanium
Quick Way to work with Models and Alloy in Appcelerator Titanium
 
Simple Unit Testing in Appcelerator Titanium Alloy
Simple Unit Testing in Appcelerator Titanium AlloySimple Unit Testing in Appcelerator Titanium Alloy
Simple Unit Testing in Appcelerator Titanium Alloy
 
DC Health Link New Mobile App 1.0 Brings Health Insurance Resources to Consum...
DC Health Link New Mobile App 1.0 Brings Health Insurance Resources to Consum...DC Health Link New Mobile App 1.0 Brings Health Insurance Resources to Consum...
DC Health Link New Mobile App 1.0 Brings Health Insurance Resources to Consum...
 
Introduction to Module Development with Appcelerator Titanium
Introduction to Module Development with Appcelerator TitaniumIntroduction to Module Development with Appcelerator Titanium
Introduction to Module Development with Appcelerator Titanium
 

Ähnlich wie Modeveast Appcelerator Presentation

Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
Imam Raza
 
SumitK's mobile app dev using drupal as base ststem
SumitK's mobile app dev using drupal as base ststemSumitK's mobile app dev using drupal as base ststem
SumitK's mobile app dev using drupal as base ststem
Sumit Kataria
 
Idea to Appstore with Titanium Mobile
Idea to Appstore with Titanium MobileIdea to Appstore with Titanium Mobile
Idea to Appstore with Titanium Mobile
Christian Sulllivan
 
Using Web Technologies to Build Native iPhone & Android Applications
Using Web Technologies to Build Native iPhone & Android ApplicationsUsing Web Technologies to Build Native iPhone & Android Applications
Using Web Technologies to Build Native iPhone & Android Applications
Axway Appcelerator
 

Ähnlich wie Modeveast Appcelerator Presentation (20)

Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client TechnologyRed Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
Red Hat JBoss BRMS and BPMS Workbench and Rich Client Technology
 
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator TitaniumMobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
Mobile 2.0 Event: Mobile for the rest of us using Appcelerator Titanium
 
Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0Appcelerator Titanium at Mobile 2.0
Appcelerator Titanium at Mobile 2.0
 
Google Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talkGoogle Developer Group(GDG) DevFest Event 2012 Android talk
Google Developer Group(GDG) DevFest Event 2012 Android talk
 
Getting started with Appcelerator Titanium
Getting started with Appcelerator TitaniumGetting started with Appcelerator Titanium
Getting started with Appcelerator Titanium
 
Getting started with titanium
Getting started with titaniumGetting started with titanium
Getting started with titanium
 
SumitK's mobile app dev using drupal as base ststem
SumitK's mobile app dev using drupal as base ststemSumitK's mobile app dev using drupal as base ststem
SumitK's mobile app dev using drupal as base ststem
 
An introduction to Titanium
An introduction to TitaniumAn introduction to Titanium
An introduction to Titanium
 
Extending Appcelerator Titanium Mobile through Native Modules
Extending Appcelerator Titanium Mobile through Native ModulesExtending Appcelerator Titanium Mobile through Native Modules
Extending Appcelerator Titanium Mobile through Native Modules
 
Idea to Appstore with Titanium Mobile
Idea to Appstore with Titanium MobileIdea to Appstore with Titanium Mobile
Idea to Appstore with Titanium Mobile
 
Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]Titanium Studio [Updated - 18/12/2011]
Titanium Studio [Updated - 18/12/2011]
 
Real World Asp.Net WebApi Applications
Real World Asp.Net WebApi ApplicationsReal World Asp.Net WebApi Applications
Real World Asp.Net WebApi Applications
 
Angular mobile angular_u
Angular mobile angular_uAngular mobile angular_u
Angular mobile angular_u
 
Appcelerator Titanium - An Introduction to the Titanium Ecosystem
Appcelerator Titanium - An Introduction to the Titanium EcosystemAppcelerator Titanium - An Introduction to the Titanium Ecosystem
Appcelerator Titanium - An Introduction to the Titanium Ecosystem
 
Building Mobile (app) Masterpiece with Distributed Agile
Building Mobile (app) Masterpiece with Distributed AgileBuilding Mobile (app) Masterpiece with Distributed Agile
Building Mobile (app) Masterpiece with Distributed Agile
 
The Mobile Web Revealed For The Java Developer
The Mobile Web Revealed For The Java DeveloperThe Mobile Web Revealed For The Java Developer
The Mobile Web Revealed For The Java Developer
 
Advanced Web Development
Advanced Web DevelopmentAdvanced Web Development
Advanced Web Development
 
Intro to appcelerator
Intro to appceleratorIntro to appcelerator
Intro to appcelerator
 
Open Source World : Using Web Technologies to build native iPhone and Android...
Open Source World : Using Web Technologies to build native iPhone and Android...Open Source World : Using Web Technologies to build native iPhone and Android...
Open Source World : Using Web Technologies to build native iPhone and Android...
 
Using Web Technologies to Build Native iPhone & Android Applications
Using Web Technologies to Build Native iPhone & Android ApplicationsUsing Web Technologies to Build Native iPhone & Android Applications
Using Web Technologies to Build Native iPhone & Android Applications
 

Kürzlich hochgeladen

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Kürzlich hochgeladen (20)

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 

Modeveast Appcelerator Presentation

  • 1. Building Mobile Apps with Titanium Appcelerator Part Two Aaron K. Saunders Appcelerator Platform Evangelist Founder/CTO Clearly Innovative Inc.
  • 2. Who Am I? • Founder/CTO Clearly Innovative Inc. • Appcelerator Platform Evangelist • 25+ years experience in software development field – Recently Enterprise Web Development w/Java & Open Source Technologies • Mobile App Development with Appcelerator for last two years • Top Contributor on Appcelerator Q&A Forum
  • 3. Here Comes The Marketing Pitch
  • 4. Titanium Is… • A cross-platform JavaScript-based framework • With access to native OS and hardware features • Modular and extensible • Free
  • 5. Titanium exploits the native ecosystem Native User Experience Multimedia Native performance + Native UI Camera, video camera, (tables, animations, gestures…e streaming/device audio/video tc.) Location-based services Analytics Augmented Track usage patterns and reality, geolocation, compass, n adoption ative maps Social sharing Titanium modules Facebook, Twitter, Yahoo YQL. Appcelerator Marketplace for Native email/address book add-on functionality Data Development tools Local Titanium Studio, integration SQLite, filesystem, properties with native SDK tools data store, web services
  • 6. Titanium is easier // Objective-C UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Hello World" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release];
  • 7. Titanium is easier // Java/Android AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Hello World") .setCancelable(false) .setPositiveButton("OK", new DialogInterface.OnClickListener(){ • public void onClick(DialogInterface dialog, int id) { MyActivity.this.finish(); } }); AlertDialog alert = builder.create();
  • 8. Titanium is easier // Titanium alert("Hello World"); … and it’s cross platform!
  • 9. Powered by Titanium Applications: • NBC apps • NYS Senate • Wunderlist • GetGlue Companies: • Kellogg’s • NBC/Universal • eBay and PayPal • Anheuser Busch • Jaguar • … and many more
  • 10. Back To The Code
  • 11. Use The Tools • Titanium Studio is your friend – Eclipse Based IDE – Integrated debugger – Code completion – Project Management – SVN/Git/Terminal Integration – Xcode Build and Deployment Integration • Command Line still available
  • 13. Use The Documentation • QA Forum – Lots of content – Improved overall site search capabilities – Monitored by Developer Relations • Appcelerator Wiki – Recent restructuring, lots of good stuff and sample code • FREE, FREE, FREE Online Videos for Appcelerator Certification Exam w/Code
  • 14.
  • 15. Use The Modules • Appcelerator Marketplace • Search Github • Ask in the forums • Build Your Own
  • 16.
  • 17. A Change is Upon Us • Not Recommended – Write your app like Kitchen Sink – multiple context application structure – use of Ti.Include • Recommended – CommonJS modules for application structure – Single Application namespace – Pass variables into modules – Event Based Programming
  • 18. CommonJS Application Structure // app.js // commonjs module for database functionality var db = require('db'); // commonjs module for user interface functionality var ui = require('ui'); // call methods on objects db.createDb(); var tabGroup = ui.createAppTabGroup(); tabGroup.open();
  • 19. CommonJS Module Structure // db.js // variable scope is local to this module var DATABASE_NAME = 'todo'; // exports indicates that the method is public exports.createDb = function() { Ti.Database.install('todo.sqlite', DATABASE_NAME); }; exports.selectItems = function(_done) { var retData = []; var db = Ti.Database.open(DATABASE_NAME); var rows = db.execute('select ROWID, * from todo where done = ?', _done); while (rows.isValidRow()) { retData.push({item:rows.fieldByName('item'), id:rows.fieldByName('ROWID')}); rows.next(); } db.close(); return retData; };
  • 20. Examples? • Sample Projects will soon be added to Titanium Studio • See Wiki Page – http://wiki.appcelerator.org/display/guides /CommonJS+in+Titanium • Android & iOS Compatible – RSS Feed Application – Map/Location Based Application – TODO database Application
  • 22. Questions Aaron K. Saunders aaron@clearlyinnovative.com blog.clearlyinnovative.com @aaronksaunders

Hinweis der Redaktion

  1. Show TiStudio IDE, focus on debugger, deployment to device on android and iOS, packaging for app store delivery, code completion, git/svn integration
  2. Titanium lets you leverage skills you have already
  3. 200,000+ developers / 27,000 apps “in the wild”
  4. Show TiStudio IDE, focus on debugger, deployment to device on android and iOS, packaging for app store delivery, code completion, git/svn integration
  5. Show TiStudio IDE, focus on debugger, deployment to device on android and iOS, packaging for app store delivery, code completion, git/svn integration