├── .gitignore ├── Classes ├── HelloPhoneGapAppDelegate.h └── HelloPhoneGapAppDelegate.m ├── Default-Landscape.png ├── Default-Portrait.png ├── Default.png ├── HelloPhoneGap-Info.plist ├── HelloPhoneGap-iPad.xcodeproj └── project.pbxproj ├── HelloPhoneGap.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── hiedi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── hiedi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── HelloPhoneGap.xcscheme │ └── xcschememanagement.plist ├── HelloPhoneGap_Prefix.pch ├── HelloPhoneGap_Start.zip ├── PhoneGap.plist ├── PhoneGapBuildSettings.xcconfig ├── PluginCopy.sh ├── Plugins ├── ActivityIndicator │ ├── ActivityIndicator.js │ ├── ActivityIndicatorCommand.h │ ├── ActivityIndicatorCommand.m │ ├── DSActivityView.h │ └── DSActivityView.m ├── ChildBrowser │ ├── ChildBrowser.js │ ├── ChildBrowserCommand.h │ ├── ChildBrowserCommand.m │ ├── ChildBrowserViewController.h │ ├── ChildBrowserViewController.m │ ├── ChildBrowserViewController.xib │ ├── README.txt │ ├── arrow_left.png │ ├── arrow_right.png │ ├── but_refresh.png │ └── compass.png ├── NativeControls │ ├── NativeControls.h │ ├── NativeControls.js │ └── NativeControls.m ├── README ├── iPod.js ├── iPod │ ├── iPod.js │ ├── iPodCommand.h │ ├── iPodCommand.m │ ├── iPodViewController.h │ └── iPodViewController.m ├── iPodCommand.h ├── iPodCommand.m ├── iPodViewController.h └── iPodViewController.m ├── README ├── Resources-iPad └── README ├── beep.wav ├── icon-72.png ├── icon.png ├── icon@2x.png ├── main.m └── www ├── APIExample.html ├── ActivityIndicator.js ├── ChildBrowser.js ├── Compass.html ├── HelloPhoneGap.css ├── NativeControls.js ├── PhoneGapShim1.js ├── PhoneGapShim2.js ├── accelerometer.html ├── beep.wav ├── camera.html ├── childBrowser.html ├── childBrowserTest.html ├── contacts.html ├── custom.html ├── debug.html ├── device.html ├── events.html ├── file.html ├── geolocation.html ├── iPod.js ├── index.html ├── media.html ├── nativeControls.html ├── network.html ├── notification.html ├── phonegap.0.9.4.js ├── phonegap.0.9.4.min.js └── storage.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/.gitignore -------------------------------------------------------------------------------- /Classes/HelloPhoneGapAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Classes/HelloPhoneGapAppDelegate.h -------------------------------------------------------------------------------- /Classes/HelloPhoneGapAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Classes/HelloPhoneGapAppDelegate.m -------------------------------------------------------------------------------- /Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Default-Landscape.png -------------------------------------------------------------------------------- /Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Default-Portrait.png -------------------------------------------------------------------------------- /Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Default.png -------------------------------------------------------------------------------- /HelloPhoneGap-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap-Info.plist -------------------------------------------------------------------------------- /HelloPhoneGap-iPad.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap-iPad.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/project.xcworkspace/xcuserdata/hiedi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/project.xcworkspace/xcuserdata/hiedi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcschemes/HelloPhoneGap.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcschemes/HelloPhoneGap.xcscheme -------------------------------------------------------------------------------- /HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap.xcodeproj/xcuserdata/hiedi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HelloPhoneGap_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap_Prefix.pch -------------------------------------------------------------------------------- /HelloPhoneGap_Start.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/HelloPhoneGap_Start.zip -------------------------------------------------------------------------------- /PhoneGap.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/PhoneGap.plist -------------------------------------------------------------------------------- /PhoneGapBuildSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/PhoneGapBuildSettings.xcconfig -------------------------------------------------------------------------------- /PluginCopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/PluginCopy.sh -------------------------------------------------------------------------------- /Plugins/ActivityIndicator/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ActivityIndicator/ActivityIndicator.js -------------------------------------------------------------------------------- /Plugins/ActivityIndicator/ActivityIndicatorCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ActivityIndicator/ActivityIndicatorCommand.h -------------------------------------------------------------------------------- /Plugins/ActivityIndicator/ActivityIndicatorCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ActivityIndicator/ActivityIndicatorCommand.m -------------------------------------------------------------------------------- /Plugins/ActivityIndicator/DSActivityView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ActivityIndicator/DSActivityView.h -------------------------------------------------------------------------------- /Plugins/ActivityIndicator/DSActivityView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ActivityIndicator/DSActivityView.m -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowser.js -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowserCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowserCommand.h -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowserCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowserCommand.m -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowserViewController.h -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowserViewController.m -------------------------------------------------------------------------------- /Plugins/ChildBrowser/ChildBrowserViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/ChildBrowserViewController.xib -------------------------------------------------------------------------------- /Plugins/ChildBrowser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/README.txt -------------------------------------------------------------------------------- /Plugins/ChildBrowser/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/arrow_left.png -------------------------------------------------------------------------------- /Plugins/ChildBrowser/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/arrow_right.png -------------------------------------------------------------------------------- /Plugins/ChildBrowser/but_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/but_refresh.png -------------------------------------------------------------------------------- /Plugins/ChildBrowser/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/ChildBrowser/compass.png -------------------------------------------------------------------------------- /Plugins/NativeControls/NativeControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/NativeControls/NativeControls.h -------------------------------------------------------------------------------- /Plugins/NativeControls/NativeControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/NativeControls/NativeControls.js -------------------------------------------------------------------------------- /Plugins/NativeControls/NativeControls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/NativeControls/NativeControls.m -------------------------------------------------------------------------------- /Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/README -------------------------------------------------------------------------------- /Plugins/iPod.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/iPod/iPod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPod/iPod.js -------------------------------------------------------------------------------- /Plugins/iPod/iPodCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPod/iPodCommand.h -------------------------------------------------------------------------------- /Plugins/iPod/iPodCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPod/iPodCommand.m -------------------------------------------------------------------------------- /Plugins/iPod/iPodViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPod/iPodViewController.h -------------------------------------------------------------------------------- /Plugins/iPod/iPodViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPod/iPodViewController.m -------------------------------------------------------------------------------- /Plugins/iPodCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPodCommand.h -------------------------------------------------------------------------------- /Plugins/iPodCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPodCommand.m -------------------------------------------------------------------------------- /Plugins/iPodViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPodViewController.h -------------------------------------------------------------------------------- /Plugins/iPodViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/Plugins/iPodViewController.m -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Resources-iPad/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/beep.wav -------------------------------------------------------------------------------- /icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/icon-72.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/icon.png -------------------------------------------------------------------------------- /icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/icon@2x.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/main.m -------------------------------------------------------------------------------- /www/APIExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/APIExample.html -------------------------------------------------------------------------------- /www/ActivityIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/ActivityIndicator.js -------------------------------------------------------------------------------- /www/ChildBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/ChildBrowser.js -------------------------------------------------------------------------------- /www/Compass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/Compass.html -------------------------------------------------------------------------------- /www/HelloPhoneGap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/HelloPhoneGap.css -------------------------------------------------------------------------------- /www/NativeControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/NativeControls.js -------------------------------------------------------------------------------- /www/PhoneGapShim1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/PhoneGapShim1.js -------------------------------------------------------------------------------- /www/PhoneGapShim2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/PhoneGapShim2.js -------------------------------------------------------------------------------- /www/accelerometer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/accelerometer.html -------------------------------------------------------------------------------- /www/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/beep.wav -------------------------------------------------------------------------------- /www/camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/camera.html -------------------------------------------------------------------------------- /www/childBrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/childBrowser.html -------------------------------------------------------------------------------- /www/childBrowserTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/childBrowserTest.html -------------------------------------------------------------------------------- /www/contacts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/contacts.html -------------------------------------------------------------------------------- /www/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/custom.html -------------------------------------------------------------------------------- /www/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/debug.html -------------------------------------------------------------------------------- /www/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/device.html -------------------------------------------------------------------------------- /www/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/events.html -------------------------------------------------------------------------------- /www/file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/file.html -------------------------------------------------------------------------------- /www/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/geolocation.html -------------------------------------------------------------------------------- /www/iPod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/iPod.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/index.html -------------------------------------------------------------------------------- /www/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/media.html -------------------------------------------------------------------------------- /www/nativeControls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/nativeControls.html -------------------------------------------------------------------------------- /www/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/network.html -------------------------------------------------------------------------------- /www/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/notification.html -------------------------------------------------------------------------------- /www/phonegap.0.9.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/phonegap.0.9.4.js -------------------------------------------------------------------------------- /www/phonegap.0.9.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/phonegap.0.9.4.min.js -------------------------------------------------------------------------------- /www/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiediutley/HelloPhoneGap/HEAD/www/storage.html --------------------------------------------------------------------------------