SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
Desarrollo de Aplicaciones Cross-
Platform para Dispositivos Móviles
Building Cross-Platform Mobile Applications
M.S.C. Raquel Vásquez Ramírez
M.S.C. Cristian A. Rodríguez Enríquez
Contenido
•  Config XML
•  Essential Properties: Config XML
•  Uso de Config XML
•  Preferences: Multi-Platform
•  Preferences: iOS
•  Preferences: BlackBerry
•  Preferences: Android
•  Storage
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 02 of 18
Config XML
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 03 of 18
Apps built using Adobe® PhoneGap™ Build can be set up
either through PhoneGap Build Web Interface or by using a
config.xml
The config.xml file, as specified in the W3C widget
specification, allows developers to easily specify metadata
about their applications.
Essen%al	
  Proper%es	
  (config.xml)	
  
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 04 of 18
<widget>: The widget element must be the root of your
XML document - it lets us know that you are following
the W3C specification.
•  id: the unique identifier for your application
•  version: for best results, use a major/minor/patch style version,
with three numbers, such as 0.0.1
•  versionCode: (optional) when building for Android, you can set the versionCode
by specifying it in your config.xml.
Notes:
BlackBerry only supports latin characters inthe <name> attribute.
BlackBerry should keep the <description> element at a reasonable length
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 05 of 18
Essen%al	
  Proper%es	
  (config.xml)
<name>: The name of the application.
<description>: A description for your application.
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0"
id = "com.phonegap.example" versionCode = "10” version = "1.0.0">
<!-- versionCode is optional and Android only -->
<name>PhoneGap Example</name>
<description>
An example for phonegap build docs.
</description>
<author href="https://build.phonegap.com" email="support@phonegap.com">
Hardeep Shoker
</author>
</widget>
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 06 of 18
Uso de Config XML
Preferences
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 07 of 18
<preference>: You can have zero or more of these elements
present in your config.xml. If you specify none, default
properties maybe applied.
• name: required
• value: required
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 08 of 18
Preferences: Multi-Platform
<preference name="phonegap-version" value="2.9.0" />
<preference name="orientation" value="landscape" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
More: https://build.phonegap.com/docs/config-xml
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 09 of 18
Preferences: iOS
<preference name="webviewbounce" value="false" />
Controls whether the screen "bounces" when scrolled beyond
the top or bottom on iOS. By default, the bounce is on.
<preference name="prerendered-icon" value="true" />
if icon is prerendered, iOS will not apply it's gloss to the app's
icon on the user's home screen. Default is false.
<preference name="prerendered-icon" value="true" />
if icon is prerendered, iOS will not apply it's gloss to the app's
icon on the user's home screen. Default is false.
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 10 of 18
Preferences: BlackBerry
<preference name="disable-cursor" value="true" />
Prevents a mouse-icon/cursor from being displayed on the
app
More: https://build.phonegap.com/docs/config-xml
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 11 of 18
Preferences: Android
<preference name="android-minSdkVersion" value="10" />
<preference name="android-maxSdkVersion" value="15" />
Android-minSdkVersion and/or android-maxSdkVersion, with
integer values
<preference name="splash-screen-duration" value="10000" />
splash-screen-duration with a value in milliseconds
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 12 of 18
Storage
PhoneGap provides access to the device's storage options. This
API offers storage options based on two different W3C
specifications:
•  The Web Storage API Specification allows you to access
data via simple key/value pairs.
•  The Web SQL Database Specification offers more full-
featured database tables accessed via SQL queries.
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 13 of 18
Storage: localStorage
var permanentStorage = window.localStorage;
var tempStorage = window.sessionStorage;
Plataformas Soportadas:
•  Android
•  BlackBerry WebWorkss (OS 6.0 and higher)
•  iOS
•  Tizen
•  Windows Phone 7 and 8
var value = window.localStorage.getItem("key");
// value is now equal to "value”
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 14 of 18
Storage: localStorage
var keyName = window.localStorage.key(0);
Key Quick Example - Returns the name of the key at the specified
position
window.localStorage.setItem("key", "value");
Set Item Quick Example - Assigns a keyed item's value
Get Item Quick Example - Returns the item identified by the
specified key
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 15 of 18
Storage: localStorage
window.localStorage.removeItem("key");
Remove Item Quick Example - Removes the item identified by the
specified key.
window.localStorage.clear();
Clear	
  Quick	
  Example	
  -­‐	
  Removes all of the key/value pairs.
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 16 of 18
Storage: Database
var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
openDatabase: Returns a new Database object.
var dbShell = window.openDatabase(database_name,
database_version, database_displayname, database_size);
Plataformas Soportadas:
•  Android
•  BlackBerry WebWorkss (OS 6.0 and higher)
•  iOS
•  Tizen
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 17 of 18
Storage: Database
Objects:
•  Database
•  SQLTransaction
•  SQLResultSet
•  SQLResultSetRowList
•  SQLError
Conclusiones	
  
•  PhoneGap permite configurar la aplicación a través
de un archivo de configuración XML
•  Existen configuraciones especificas para cada
plataforma
•  PhoneGap permite utilizar almacenamiento local
(Web y de base de datos)
•  Hydra permite actualizar sin reinstalar utilizando
push, inclusive cuando se actualiza el esquema de
almacenamiento
Building Cross-Plaftform Mobile Applications – PhoneGap
Slide 18 of 18

Weitere ähnliche Inhalte

Ähnlich wie 03 Building cross platform mobile applications with PhoneGap / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles

"Native" Apps with APEX and PhoneGap
"Native" Apps with APEX and PhoneGap"Native" Apps with APEX and PhoneGap
"Native" Apps with APEX and PhoneGap
Christian Rokitta
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
Christian Heilmann
 
Building native mobile apps using web technologies
Building native mobile apps using web technologiesBuilding native mobile apps using web technologies
Building native mobile apps using web technologies
Hjörtur Hilmarsson
 
Windows Phone 7 and Silverlight
Windows Phone 7 and SilverlightWindows Phone 7 and Silverlight
Windows Phone 7 and Silverlight
Glen Gordon
 

Ähnlich wie 03 Building cross platform mobile applications with PhoneGap / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles (20)

"Native" Apps with APEX and PhoneGap
"Native" Apps with APEX and PhoneGap"Native" Apps with APEX and PhoneGap
"Native" Apps with APEX and PhoneGap
 
An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)An end-to-end experience of Windows Phone 7 development (Part 1)
An end-to-end experience of Windows Phone 7 development (Part 1)
 
Introduction phonegap
Introduction phonegapIntroduction phonegap
Introduction phonegap
 
Advanced programing in phonegap
Advanced programing in phonegapAdvanced programing in phonegap
Advanced programing in phonegap
 
Mohini_Singh_CV
Mohini_Singh_CVMohini_Singh_CV
Mohini_Singh_CV
 
mobicon_paper
mobicon_papermobicon_paper
mobicon_paper
 
phonegap_101
phonegap_101phonegap_101
phonegap_101
 
App innovationcircles xamarin
App innovationcircles xamarinApp innovationcircles xamarin
App innovationcircles xamarin
 
Phone gap development, testing, and debugging
Phone gap development, testing, and debuggingPhone gap development, testing, and debugging
Phone gap development, testing, and debugging
 
Cross platform mobile app development with Xamarin
Cross platform mobile app development with XamarinCross platform mobile app development with Xamarin
Cross platform mobile app development with Xamarin
 
Intro to appcelerator
Intro to appceleratorIntro to appcelerator
Intro to appcelerator
 
Titanium appcelerator my first app
Titanium appcelerator my first appTitanium appcelerator my first app
Titanium appcelerator my first app
 
Desenvolvimento Mobile Híbrido
Desenvolvimento Mobile HíbridoDesenvolvimento Mobile Híbrido
Desenvolvimento Mobile Híbrido
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
Dreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile designDreamweaver CS6, jQuery, PhoneGap, mobile design
Dreamweaver CS6, jQuery, PhoneGap, mobile design
 
Developing Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGapDeveloping Windows Phone 8 apps using PhoneGap
Developing Windows Phone 8 apps using PhoneGap
 
Building native mobile apps using web technologies
Building native mobile apps using web technologiesBuilding native mobile apps using web technologies
Building native mobile apps using web technologies
 
Windows Phone 7 and Silverlight
Windows Phone 7 and SilverlightWindows Phone 7 and Silverlight
Windows Phone 7 and Silverlight
 
Intro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap BuildIntro to PhoneGap and PhoneGap Build
Intro to PhoneGap and PhoneGap Build
 
Hybrid application development
Hybrid application developmentHybrid application development
Hybrid application development
 

Mehr von Cristian Rodríguez Enríquez

Mehr von Cristian Rodríguez Enríquez (10)

05 building cross platform mobile applications
05 building cross platform mobile applications05 building cross platform mobile applications
05 building cross platform mobile applications
 
LiDIA: An integration architecture to query Linked Open Data from multiple da...
LiDIA: An integration architecture to query Linked Open Data from multiple da...LiDIA: An integration architecture to query Linked Open Data from multiple da...
LiDIA: An integration architecture to query Linked Open Data from multiple da...
 
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
02 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
 
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
01 Building cross platform mobile applications with PhoneGap / Desarrollo de ...
 
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
05 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
04 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
03 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
02 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
02 Building cross-platform mobile applications with jQuery Mobile / Desarroll...02 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
02 Building cross-platform mobile applications with jQuery Mobile / Desarroll...
 
01 Building cross-platform mobile applications with jQuery Mobile
01 Building cross-platform mobile applications with jQuery Mobile01 Building cross-platform mobile applications with jQuery Mobile
01 Building cross-platform mobile applications with jQuery Mobile
 
Propuesta de integración para el consumo de múltiples datasets de linked data
Propuesta de integración para el consumo de múltiples datasets de linked dataPropuesta de integración para el consumo de múltiples datasets de linked data
Propuesta de integración para el consumo de múltiples datasets de linked data
 

Kürzlich hochgeladen

Kürzlich hochgeladen (20)

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 

03 Building cross platform mobile applications with PhoneGap / Desarrollo de Aplicaciones Cross-Platform para Dispositivos Moviles

  • 1. Desarrollo de Aplicaciones Cross- Platform para Dispositivos Móviles Building Cross-Platform Mobile Applications M.S.C. Raquel Vásquez Ramírez M.S.C. Cristian A. Rodríguez Enríquez
  • 2. Contenido •  Config XML •  Essential Properties: Config XML •  Uso de Config XML •  Preferences: Multi-Platform •  Preferences: iOS •  Preferences: BlackBerry •  Preferences: Android •  Storage Building Cross-Plaftform Mobile Applications – PhoneGap Slide 02 of 18
  • 3. Config XML Building Cross-Plaftform Mobile Applications – PhoneGap Slide 03 of 18 Apps built using Adobe® PhoneGap™ Build can be set up either through PhoneGap Build Web Interface or by using a config.xml The config.xml file, as specified in the W3C widget specification, allows developers to easily specify metadata about their applications.
  • 4. Essen%al  Proper%es  (config.xml)   Building Cross-Plaftform Mobile Applications – PhoneGap Slide 04 of 18 <widget>: The widget element must be the root of your XML document - it lets us know that you are following the W3C specification. •  id: the unique identifier for your application •  version: for best results, use a major/minor/patch style version, with three numbers, such as 0.0.1 •  versionCode: (optional) when building for Android, you can set the versionCode by specifying it in your config.xml.
  • 5. Notes: BlackBerry only supports latin characters inthe <name> attribute. BlackBerry should keep the <description> element at a reasonable length Building Cross-Plaftform Mobile Applications – PhoneGap Slide 05 of 18 Essen%al  Proper%es  (config.xml) <name>: The name of the application. <description>: A description for your application.
  • 6. <?xml version="1.0" encoding="UTF-8" ?> <widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id = "com.phonegap.example" versionCode = "10” version = "1.0.0"> <!-- versionCode is optional and Android only --> <name>PhoneGap Example</name> <description> An example for phonegap build docs. </description> <author href="https://build.phonegap.com" email="support@phonegap.com"> Hardeep Shoker </author> </widget> Building Cross-Plaftform Mobile Applications – PhoneGap Slide 06 of 18 Uso de Config XML
  • 7. Preferences Building Cross-Plaftform Mobile Applications – PhoneGap Slide 07 of 18 <preference>: You can have zero or more of these elements present in your config.xml. If you specify none, default properties maybe applied. • name: required • value: required
  • 8. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 08 of 18 Preferences: Multi-Platform <preference name="phonegap-version" value="2.9.0" /> <preference name="orientation" value="landscape" /> <preference name="target-device" value="universal" /> <preference name="fullscreen" value="true" />
  • 9. More: https://build.phonegap.com/docs/config-xml Building Cross-Plaftform Mobile Applications – PhoneGap Slide 09 of 18 Preferences: iOS <preference name="webviewbounce" value="false" /> Controls whether the screen "bounces" when scrolled beyond the top or bottom on iOS. By default, the bounce is on. <preference name="prerendered-icon" value="true" /> if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen. Default is false. <preference name="prerendered-icon" value="true" /> if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen. Default is false.
  • 10. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 10 of 18 Preferences: BlackBerry <preference name="disable-cursor" value="true" /> Prevents a mouse-icon/cursor from being displayed on the app
  • 11. More: https://build.phonegap.com/docs/config-xml Building Cross-Plaftform Mobile Applications – PhoneGap Slide 11 of 18 Preferences: Android <preference name="android-minSdkVersion" value="10" /> <preference name="android-maxSdkVersion" value="15" /> Android-minSdkVersion and/or android-maxSdkVersion, with integer values <preference name="splash-screen-duration" value="10000" /> splash-screen-duration with a value in milliseconds
  • 12. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 12 of 18 Storage PhoneGap provides access to the device's storage options. This API offers storage options based on two different W3C specifications: •  The Web Storage API Specification allows you to access data via simple key/value pairs. •  The Web SQL Database Specification offers more full- featured database tables accessed via SQL queries.
  • 13. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 13 of 18 Storage: localStorage var permanentStorage = window.localStorage; var tempStorage = window.sessionStorage; Plataformas Soportadas: •  Android •  BlackBerry WebWorkss (OS 6.0 and higher) •  iOS •  Tizen •  Windows Phone 7 and 8
  • 14. var value = window.localStorage.getItem("key"); // value is now equal to "value” Building Cross-Plaftform Mobile Applications – PhoneGap Slide 14 of 18 Storage: localStorage var keyName = window.localStorage.key(0); Key Quick Example - Returns the name of the key at the specified position window.localStorage.setItem("key", "value"); Set Item Quick Example - Assigns a keyed item's value Get Item Quick Example - Returns the item identified by the specified key
  • 15. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 15 of 18 Storage: localStorage window.localStorage.removeItem("key"); Remove Item Quick Example - Removes the item identified by the specified key. window.localStorage.clear(); Clear  Quick  Example  -­‐  Removes all of the key/value pairs.
  • 16. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 16 of 18 Storage: Database var db = window.openDatabase("test", "1.0", "Test DB", 1000000); openDatabase: Returns a new Database object. var dbShell = window.openDatabase(database_name, database_version, database_displayname, database_size); Plataformas Soportadas: •  Android •  BlackBerry WebWorkss (OS 6.0 and higher) •  iOS •  Tizen
  • 17. Building Cross-Plaftform Mobile Applications – PhoneGap Slide 17 of 18 Storage: Database Objects: •  Database •  SQLTransaction •  SQLResultSet •  SQLResultSetRowList •  SQLError
  • 18. Conclusiones   •  PhoneGap permite configurar la aplicación a través de un archivo de configuración XML •  Existen configuraciones especificas para cada plataforma •  PhoneGap permite utilizar almacenamiento local (Web y de base de datos) •  Hydra permite actualizar sin reinstalar utilizando push, inclusive cuando se actualiza el esquema de almacenamiento Building Cross-Plaftform Mobile Applications – PhoneGap Slide 18 of 18