├── .gitmodules ├── README.md ├── ep-002 ├── .gitignore ├── .project ├── .settings │ └── com.appcelerator.titanium.mobile.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README.md ├── Resources │ ├── NavigationController.js │ ├── TestWindow.js │ ├── android │ │ ├── appicon.png │ │ ├── default.png │ │ └── images │ │ │ ├── res-long-land-hdpi │ │ │ └── default.png │ │ │ ├── res-long-land-ldpi │ │ │ └── default.png │ │ │ ├── res-long-port-hdpi │ │ │ └── default.png │ │ │ ├── res-long-port-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-mdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-ldpi │ │ │ └── default.png │ │ │ └── res-notlong-port-mdpi │ │ │ └── default.png │ ├── app.js │ └── iphone │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── appicon.png ├── build.log ├── manifest └── tiapp.xml ├── ep-003 ├── .gitignore ├── .project ├── .settings │ └── com.appcelerator.titanium.mobile.prefs ├── CustomComponents │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.appcelerator.titanium.mobile.prefs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ ├── default.png │ │ │ └── images │ │ │ │ ├── res-long-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-mdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-ldpi │ │ │ │ └── default.png │ │ │ │ └── res-notlong-port-mdpi │ │ │ │ └── default.png │ │ ├── app.js │ │ ├── images │ │ │ ├── star.png │ │ │ ├── star_half.png │ │ │ └── star_off.png │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ └── ui.js │ ├── build.log │ ├── checklist.txt │ ├── manifest │ └── tiapp.xml └── README.md ├── ep-004 ├── .metadata │ └── .plugins │ │ ├── com.aptana.core.io │ │ └── connections.25 │ │ ├── com.aptana.syncing.core │ │ ├── defaultConnection.25 │ │ └── sites.25 │ │ ├── org.eclipse.core.resources │ │ ├── .root │ │ │ └── 2.tree │ │ └── .safetable │ │ │ ├── com.aptana.core.io.25 │ │ │ └── com.aptana.syncing.core.25 │ │ └── org.eclipse.ui.ide │ │ └── dialog_settings.xml ├── README.md └── UtilityApplication │ ├── .gitignore │ ├── .project │ ├── .settings │ └── com.appcelerator.titanium.mobile.prefs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ ├── android │ │ ├── appicon.png │ │ ├── default.png │ │ └── images │ │ │ ├── res-long-land-hdpi │ │ │ └── default.png │ │ │ ├── res-long-land-ldpi │ │ │ └── default.png │ │ │ ├── res-long-port-hdpi │ │ │ └── default.png │ │ │ ├── res-long-port-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-mdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-ldpi │ │ │ └── default.png │ │ │ └── res-notlong-port-mdpi │ │ │ └── default.png │ ├── app.js │ ├── images │ │ └── info.png │ ├── iphone │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── appicon.png │ └── ui │ │ ├── MainView.js │ │ ├── SettingsView.js │ │ └── UtilityWindow.js │ ├── build.log │ ├── manifest │ └── tiapp.xml ├── ep-005 ├── Parse │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.appcelerator.titanium.mobile.prefs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ ├── default.png │ │ │ └── images │ │ │ │ ├── res-long-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-mdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-ldpi │ │ │ │ └── default.png │ │ │ │ └── res-notlong-port-mdpi │ │ │ │ └── default.png │ │ ├── app.js │ │ ├── credentials.js │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ └── parse.js │ ├── manifest │ └── tiapp.xml ├── README.md └── vo.md ├── ep-006 ├── README.md ├── SCTabGroup │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.appcelerator.titanium.mobile.prefs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ ├── default.png │ │ │ └── images │ │ │ │ ├── res-long-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-long-port-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-ldpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-land-mdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-hdpi │ │ │ │ └── default.png │ │ │ │ ├── res-notlong-port-ldpi │ │ │ │ └── default.png │ │ │ │ └── res-notlong-port-mdpi │ │ │ │ └── default.png │ │ ├── app.js │ │ ├── images │ │ │ ├── KS_nav_ui.png │ │ │ └── KS_nav_views.png │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ ├── lib │ │ │ └── require_patch.js │ │ └── ui │ │ │ ├── AppTabGroup.js │ │ │ └── AppWindow.js │ ├── build.log │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-007 ├── README.md ├── WUPHF │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.appcelerator.titanium.mobile.prefs │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── .DS_Store │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ ├── images │ │ │ ├── button.png │ │ │ ├── button_down.png │ │ │ ├── config.png │ │ │ ├── message.png │ │ │ ├── titanium.png │ │ │ ├── twilio.png │ │ │ └── wuphf.png │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ └── appicon.png │ │ ├── lib │ │ │ ├── Twilio.js │ │ │ ├── credentials.js │ │ │ └── require.js │ │ └── ui │ │ │ ├── AppWindow.js │ │ │ ├── ConfigView.js │ │ │ └── MainView.js │ ├── build.log │ ├── build │ │ ├── android │ │ │ ├── .DS_Store │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ └── .project │ │ └── iphone │ │ │ └── .DS_Store │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-008 ├── MacDesktopFeatures │ ├── .DS_Store │ ├── .gitignore │ ├── .project │ ├── .settings │ │ └── com.appcelerator.titanium.desktop.prefs │ ├── CHANGELOG.txt │ ├── LICENSE.txt │ ├── Resources │ │ ├── default_app_logo.png │ │ ├── index.html │ │ ├── tweetanium.png │ │ └── tweetanium16.png │ ├── manifest │ └── tiapp.xml ├── README.md └── vo.md ├── ep-009 ├── IntentCookbook │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ └── toExternal │ │ │ ├── cricket.wav │ │ │ ├── movie.mp4 │ │ │ ├── titanium.jpg │ │ │ └── w4.pdf │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml ├── README.md └── vo.md ├── ep-010 ├── Forms │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ ├── forms.js │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ └── semiModalPicker.js │ ├── build │ │ ├── android │ │ │ └── .gitignore │ │ └── iphone │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml ├── README.md └── vo.md ├── ep-011 ├── README.md ├── underscore │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ └── underscore.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-012 ├── README.md ├── datejs │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ ├── date.js │ │ └── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-013 ├── README.md ├── notify │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── ExampleService.js │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ └── app.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-014 ├── README.md ├── Twisti │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.jdt.apt.core.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── LICENSE │ ├── assets │ │ └── README │ ├── build.properties │ ├── build.xml │ ├── dist │ │ └── Twisti.jar │ ├── documentation │ │ └── index.md │ ├── example │ │ └── app.js │ ├── hooks │ │ ├── README │ │ ├── add.py │ │ ├── install.py │ │ ├── remove.py │ │ └── uninstall.py │ ├── manifest │ ├── platform │ │ └── README │ ├── src │ │ └── ti │ │ │ └── twisti │ │ │ ├── ExampleProxy.java │ │ │ └── TwistiModule.java │ └── timodule.xml ├── twisti-ep014 │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ └── app.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ ├── modules │ │ └── android │ │ │ └── ti.twisti │ │ │ └── 0.1 │ │ │ ├── LICENSE │ │ │ ├── Twisti.jar │ │ │ ├── documentation │ │ │ └── index.html │ │ │ ├── example │ │ │ └── app.js │ │ │ ├── manifest │ │ │ └── timodule.xml │ └── tiapp.xml └── vo.md ├── ep-015 ├── README.md ├── twisti-ep015 │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ ├── default.png │ │ │ └── web │ │ │ │ ├── back.jpg │ │ │ │ └── front.jpg │ │ ├── app.js │ │ └── web │ │ │ ├── RequestAnimationFrame.js │ │ │ ├── Three.js │ │ │ ├── back.jpg │ │ │ ├── front.jpg │ │ │ ├── index.html │ │ │ └── twistiScene.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ ├── modules │ │ └── android │ │ │ └── ti.twisti │ │ │ └── 0.1 │ │ │ ├── LICENSE │ │ │ ├── Twisti.jar │ │ │ ├── documentation │ │ │ └── index.html │ │ │ ├── example │ │ │ └── app.js │ │ │ ├── manifest │ │ │ └── timodule.xml │ └── tiapp.xml └── vo.md ├── ep-016 ├── README.md ├── twisti-ep016 │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ ├── default.png │ │ │ └── web │ │ │ │ ├── back.jpg │ │ │ │ └── front.jpg │ │ ├── app.js │ │ ├── client.js │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ ├── sensor.js │ │ └── web │ │ │ ├── RequestAnimationFrame.js │ │ │ ├── Three.js │ │ │ ├── back.jpg │ │ │ ├── front.jpg │ │ │ ├── index.html │ │ │ └── twistiScene.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ ├── modules │ │ └── android │ │ │ └── ti.twisti │ │ │ └── 0.1 │ │ │ ├── LICENSE │ │ │ ├── Twisti.jar │ │ │ ├── documentation │ │ │ └── index.html │ │ │ ├── example │ │ │ └── app.js │ │ │ ├── manifest │ │ │ └── timodule.xml │ └── tiapp.xml └── vo.md ├── ep-017 ├── README.md ├── speed_v8 │ ├── .gitignore │ ├── .project │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ │ ├── android │ │ │ ├── appicon.png │ │ │ └── default.png │ │ ├── app.js │ │ ├── data.json │ │ ├── images │ │ │ ├── image0.jpg │ │ │ └── image1.png │ │ ├── iphone │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ └── appicon.png │ │ └── ui │ │ │ ├── ApplicationWindow.js │ │ │ └── TestView.js │ ├── build │ │ └── android │ │ │ └── .gitignore │ ├── manifest │ └── tiapp.xml └── vo.md ├── ep-019 ├── README.md └── vo.md ├── ep-020 ├── README.md ├── test_longpress_pinch │ └── build │ │ └── iphone │ │ ├── Classes │ │ ├── AFOpenFlow │ │ │ ├── AFItemView.h │ │ │ ├── AFItemView.m │ │ │ ├── AFOpenFlowConstants.h │ │ │ ├── AFOpenFlowView.h │ │ │ ├── AFOpenFlowView.m │ │ │ ├── AFUIImageReflection.h │ │ │ ├── AFUIImageReflection.m │ │ │ ├── UIImageExtras.h │ │ │ └── UIImageExtras.m │ │ ├── APIModule.h │ │ ├── APIModule.m │ │ ├── AQRecorder.h │ │ ├── AQRecorder.mm │ │ ├── ASI │ │ │ ├── ASIAuthenticationDialog.h │ │ │ ├── ASIAuthenticationDialog.m │ │ │ ├── ASICacheDelegate.h │ │ │ ├── ASIDataCompressor.h │ │ │ ├── ASIDataCompressor.m │ │ │ ├── ASIDataDecompressor.h │ │ │ ├── ASIDataDecompressor.m │ │ │ ├── ASIDownloadCache.h │ │ │ ├── ASIDownloadCache.m │ │ │ ├── ASIFormDataRequest.h │ │ │ ├── ASIFormDataRequest.m │ │ │ ├── ASIHTTPRequest.h │ │ │ ├── ASIHTTPRequest.m │ │ │ ├── ASIHTTPRequestConfig.h │ │ │ ├── ASIHTTPRequestDelegate.h │ │ │ ├── ASIInputStream.h │ │ │ ├── ASIInputStream.m │ │ │ ├── ASINetworkQueue.h │ │ │ ├── ASINetworkQueue.m │ │ │ ├── ASIProgressDelegate.h │ │ │ ├── Reachability.h │ │ │ └── Reachability.m │ │ ├── AccelerometerModule.h │ │ ├── AccelerometerModule.m │ │ ├── AnalyticsModule.h │ │ ├── AnalyticsModule.mm │ │ ├── AppModule.h │ │ ├── AppModule.m │ │ ├── ApplicationDefaults.h │ │ ├── ApplicationDefaults.m │ │ ├── ApplicationMods.h │ │ ├── ApplicationMods.m │ │ ├── ApplicationRouting.h │ │ ├── ApplicationRouting.m │ │ ├── AsyncSocket.h │ │ ├── AsyncSocket.m │ │ ├── AsyncUdpSocket.h │ │ ├── AsyncUdpSocket.m │ │ ├── AudioStreamer │ │ │ ├── AudioStreamer.h │ │ │ ├── AudioStreamer.m │ │ │ ├── AudioStreamerBC.h │ │ │ ├── AudioStreamerBC.m │ │ │ ├── AudioStreamerCUR.h │ │ │ └── AudioStreamerCUR.m │ │ ├── Base64Transcoder.c │ │ ├── Base64Transcoder.h │ │ ├── Bridge.h │ │ ├── Bridge.m │ │ ├── CADebugMacros.cpp │ │ ├── CADebugMacros.h │ │ ├── CAMath.h │ │ ├── CAStreamBasicDescription.cpp │ │ ├── CAStreamBasicDescription.h │ │ ├── CAXException.cpp │ │ ├── CAXException.h │ │ ├── CodecModule.h │ │ ├── CodecModule.m │ │ ├── ContactsModule.h │ │ ├── ContactsModule.m │ │ ├── DatabaseModule.h │ │ ├── DatabaseModule.m │ │ ├── FBConnect │ │ │ ├── FBConnect.h │ │ │ ├── FBDialog.h │ │ │ ├── FBDialog.m │ │ │ ├── FBLoginButton.h │ │ │ ├── FBLoginButton.m │ │ │ ├── FBLoginDialog.h │ │ │ ├── FBLoginDialog.m │ │ │ ├── FBRequest.h │ │ │ ├── FBRequest.m │ │ │ ├── Facebook.h │ │ │ └── Facebook.m │ │ ├── FacebookModule.h │ │ ├── FacebookModule.m │ │ ├── FilesystemModule.h │ │ ├── FilesystemModule.m │ │ ├── GDataXMLNode.h │ │ ├── GDataXMLNode.m │ │ ├── GeolocationModule.h │ │ ├── GeolocationModule.mm │ │ ├── GestureModule.h │ │ ├── GestureModule.m │ │ ├── ImageLoader.h │ │ ├── ImageLoader.m │ │ ├── JSON │ │ │ ├── JSON.h │ │ │ ├── MASS-TODO │ │ │ ├── NSObject+SBJSON.h │ │ │ ├── NSObject+SBJSON.m │ │ │ ├── NSString+SBJSON.h │ │ │ ├── NSString+SBJSON.m │ │ │ ├── SBJSON.h │ │ │ ├── SBJSON.m │ │ │ ├── SBJsonBase.h │ │ │ ├── SBJsonBase.m │ │ │ ├── SBJsonParser.h │ │ │ ├── SBJsonParser.m │ │ │ ├── SBJsonWriter.h │ │ │ └── SBJsonWriter.m │ │ ├── KrollBridge.h │ │ ├── KrollBridge.mm │ │ ├── KrollCallback.h │ │ ├── KrollCallback.m │ │ ├── KrollContext.h │ │ ├── KrollContext.mm │ │ ├── KrollCoverage.h │ │ ├── KrollCoverage.m │ │ ├── KrollMethod.h │ │ ├── KrollMethod.m │ │ ├── KrollMethodDelegate.h │ │ ├── KrollMethodDelegate.m │ │ ├── KrollObject.h │ │ ├── KrollObject.m │ │ ├── KrollPropertyDelegate.h │ │ ├── KrollPropertyDelegate.m │ │ ├── KrollTimer.h │ │ ├── KrollTimer.m │ │ ├── LauncherButton.h │ │ ├── LauncherButton.m │ │ ├── LauncherItem.h │ │ ├── LauncherItem.m │ │ ├── LauncherView.h │ │ ├── LauncherView.m │ │ ├── LayoutConstraint.h │ │ ├── LayoutConstraint.m │ │ ├── ListenerEntry.h │ │ ├── ListenerEntry.m │ │ ├── LocaleModule.h │ │ ├── LocaleModule.m │ │ ├── MGSplitView │ │ │ ├── MGSplitCornersView.h │ │ │ ├── MGSplitCornersView.m │ │ │ ├── MGSplitDividerView.h │ │ │ ├── MGSplitDividerView.m │ │ │ ├── MGSplitView.h │ │ │ ├── MGSplitView.m │ │ │ ├── MGSplitViewController.h │ │ │ └── MGSplitViewController.m │ │ ├── MapModule.h │ │ ├── MapModule.m │ │ ├── MediaModule.h │ │ ├── MediaModule.m │ │ ├── Mimetypes.h │ │ ├── Mimetypes.m │ │ ├── NSData+Additions.h │ │ ├── NSData+Additions.mm │ │ ├── NetworkModule.h │ │ ├── NetworkModule.m │ │ ├── OperationQueue.h │ │ ├── OperationQueue.m │ │ ├── PlatformModule.h │ │ ├── PlatformModule.m │ │ ├── PlausibleDatabase │ │ │ ├── PLDatabase.h │ │ │ ├── PLPreparedStatement.h │ │ │ ├── PLResultSet.h │ │ │ ├── PLSqliteDatabase.h │ │ │ ├── PLSqliteDatabase.m │ │ │ ├── PLSqlitePreparedStatement.h │ │ │ ├── PLSqlitePreparedStatement.m │ │ │ ├── PLSqliteResultSet.h │ │ │ ├── PLSqliteResultSet.m │ │ │ ├── PlausibleDatabase.h │ │ │ └── PlausibleDatabase.m │ │ ├── SBJSON.h │ │ ├── SBJSON.m │ │ ├── SCListener.h │ │ ├── SCListener.m │ │ ├── StreamModule.h │ │ ├── StreamModule.m │ │ ├── TIDOMCharacterDataProxy.h │ │ ├── TIDOMCharacterDataProxy.m │ │ ├── TIDOMDOMImplementationProxy.h │ │ ├── TIDOMDOMImplementationProxy.m │ │ ├── TIDOMDocumentTypeProxy.h │ │ ├── TIDOMDocumentTypeProxy.m │ │ ├── Ti2DMatrix.h │ │ ├── Ti2DMatrix.m │ │ ├── TiAction.h │ │ ├── TiAction.m │ │ ├── TiAnimation.h │ │ ├── TiAnimation.m │ │ ├── TiApp.h │ │ ├── TiApp.mm │ │ ├── TiAppPropertiesProxy.h │ │ ├── TiAppPropertiesProxy.m │ │ ├── TiAppiOSBackgroundServiceProxy.h │ │ ├── TiAppiOSBackgroundServiceProxy.m │ │ ├── TiAppiOSLocalNotificationProxy.h │ │ ├── TiAppiOSLocalNotificationProxy.m │ │ ├── TiAppiOSProxy.h │ │ ├── TiAppiOSProxy.m │ │ ├── TiBase.h │ │ ├── TiBase.m │ │ ├── TiBlob.h │ │ ├── TiBlob.m │ │ ├── TiBuffer.h │ │ ├── TiBuffer.m │ │ ├── TiButtonUtil.h │ │ ├── TiButtonUtil.m │ │ ├── TiColor.h │ │ ├── TiColor.m │ │ ├── TiComplexValue.h │ │ ├── TiComplexValue.m │ │ ├── TiContactsGroup.h │ │ ├── TiContactsGroup.m │ │ ├── TiContactsPerson.h │ │ ├── TiContactsPerson.m │ │ ├── TiController.h │ │ ├── TiDOMAttrProxy.h │ │ ├── TiDOMAttrProxy.m │ │ ├── TiDOMCDATANodeProxy.h │ │ ├── TiDOMCDATANodeProxy.m │ │ ├── TiDOMCommentProxy.h │ │ ├── TiDOMCommentProxy.m │ │ ├── TiDOMDocFragProxy.h │ │ ├── TiDOMDocFragProxy.m │ │ ├── TiDOMDocumentProxy.h │ │ ├── TiDOMDocumentProxy.m │ │ ├── TiDOMElementProxy.h │ │ ├── TiDOMElementProxy.m │ │ ├── TiDOMEntityProxy.h │ │ ├── TiDOMEntityProxy.m │ │ ├── TiDOMEntityRefProxy.h │ │ ├── TiDOMEntityRefProxy.m │ │ ├── TiDOMNamedNodeMapProxy.h │ │ ├── TiDOMNamedNodeMapProxy.m │ │ ├── TiDOMNodeListProxy.h │ │ ├── TiDOMNodeListProxy.m │ │ ├── TiDOMNodeProxy.h │ │ ├── TiDOMNodeProxy.m │ │ ├── TiDOMNotationProxy.h │ │ ├── TiDOMNotationProxy.m │ │ ├── TiDOMPIProxy.h │ │ ├── TiDOMPIProxy.m │ │ ├── TiDOMTextNodeProxy.h │ │ ├── TiDOMTextNodeProxy.m │ │ ├── TiDOMValidator.h │ │ ├── TiDOMValidator.m │ │ ├── TiDataStream.h │ │ ├── TiDataStream.m │ │ ├── TiDatabaseProxy.h │ │ ├── TiDatabaseProxy.m │ │ ├── TiDatabaseResultSetProxy.h │ │ ├── TiDatabaseResultSetProxy.m │ │ ├── TiDebugger.h │ │ ├── TiDimension.h │ │ ├── TiDimension.m │ │ ├── TiErrorController.h │ │ ├── TiErrorController.m │ │ ├── TiEvaluator.h │ │ ├── TiFacebookDialogRequest.h │ │ ├── TiFacebookDialogRequest.m │ │ ├── TiFacebookLoginButton.h │ │ ├── TiFacebookLoginButton.m │ │ ├── TiFacebookLoginButtonProxy.h │ │ ├── TiFacebookLoginButtonProxy.m │ │ ├── TiFacebookRequest.h │ │ ├── TiFacebookRequest.m │ │ ├── TiFile.h │ │ ├── TiFile.m │ │ ├── TiFilesystemBlobProxy.h │ │ ├── TiFilesystemBlobProxy.m │ │ ├── TiFilesystemFileProxy.h │ │ ├── TiFilesystemFileProxy.m │ │ ├── TiFilesystemFileStreamProxy.h │ │ ├── TiFilesystemFileStreamProxy.m │ │ ├── TiGradient.h │ │ ├── TiGradient.m │ │ ├── TiHost.h │ │ ├── TiHost.m │ │ ├── TiLayoutQueue.h │ │ ├── TiLayoutQueue.m │ │ ├── TiLocale.h │ │ ├── TiLocale.m │ │ ├── TiMapAnnotationProxy.h │ │ ├── TiMapAnnotationProxy.m │ │ ├── TiMapImageAnnotationView.h │ │ ├── TiMapImageAnnotationView.m │ │ ├── TiMapPinAnnotationView.h │ │ ├── TiMapPinAnnotationView.m │ │ ├── TiMapView.h │ │ ├── TiMapView.m │ │ ├── TiMapViewProxy.h │ │ ├── TiMapViewProxy.m │ │ ├── TiMediaAudioPlayerProxy.h │ │ ├── TiMediaAudioPlayerProxy.m │ │ ├── TiMediaAudioRecorderProxy.h │ │ ├── TiMediaAudioRecorderProxy.mm │ │ ├── TiMediaAudioSession.h │ │ ├── TiMediaAudioSession.m │ │ ├── TiMediaItem.h │ │ ├── TiMediaItem.m │ │ ├── TiMediaMusicPlayer.h │ │ ├── TiMediaMusicPlayer.m │ │ ├── TiMediaSoundProxy.h │ │ ├── TiMediaSoundProxy.m │ │ ├── TiMediaVideoPlayer.h │ │ ├── TiMediaVideoPlayer.m │ │ ├── TiMediaVideoPlayerProxy.h │ │ ├── TiMediaVideoPlayerProxy.m │ │ ├── TiModule.h │ │ ├── TiModule.m │ │ ├── TiNetworkBonjourBrowserProxy.h │ │ ├── TiNetworkBonjourBrowserProxy.m │ │ ├── TiNetworkBonjourServiceProxy.h │ │ ├── TiNetworkBonjourServiceProxy.m │ │ ├── TiNetworkHTTPClientProxy.h │ │ ├── TiNetworkHTTPClientProxy.m │ │ ├── TiNetworkHTTPClientResultProxy.h │ │ ├── TiNetworkHTTPClientResultProxy.m │ │ ├── TiNetworkSocketProxy.h │ │ ├── TiNetworkSocketProxy.m │ │ ├── TiNetworkSocketTCPProxy.h │ │ ├── TiNetworkSocketTCPProxy.m │ │ ├── TiNetworkTCPSocketProxy.h │ │ ├── TiNetworkTCPSocketProxy.mm │ │ ├── TiPlatformDisplayCaps.h │ │ ├── TiPlatformDisplayCaps.m │ │ ├── TiPoint.h │ │ ├── TiPoint.m │ │ ├── TiProxy.h │ │ ├── TiProxy.m │ │ ├── TiPublicAPI.h │ │ ├── TiPublicAPI.m │ │ ├── TiRange.h │ │ ├── TiRange.m │ │ ├── TiRect.h │ │ ├── TiRect.m │ │ ├── TiRootController.h │ │ ├── TiRootViewController.h │ │ ├── TiRootViewController.m │ │ ├── TiStreamProxy.h │ │ ├── TiStreamProxy.m │ │ ├── TiStylesheet.h │ │ ├── TiStylesheet.m │ │ ├── TiTab.h │ │ ├── TiTabController.h │ │ ├── TiTabGroup.h │ │ ├── TiThreading.h │ │ ├── TiThreading.m │ │ ├── TiToolbar.h │ │ ├── TiToolbar.m │ │ ├── TiToolbarButton.h │ │ ├── TiUIActivityIndicator.h │ │ ├── TiUIActivityIndicator.m │ │ ├── TiUIActivityIndicatorProxy.h │ │ ├── TiUIActivityIndicatorProxy.m │ │ ├── TiUIAlertDialogProxy.h │ │ ├── TiUIAlertDialogProxy.m │ │ ├── TiUIButton.h │ │ ├── TiUIButton.m │ │ ├── TiUIButtonBar.h │ │ ├── TiUIButtonBar.m │ │ ├── TiUIButtonBarProxy.h │ │ ├── TiUIButtonBarProxy.m │ │ ├── TiUIButtonProxy.h │ │ ├── TiUIButtonProxy.m │ │ ├── TiUICanvasView.h │ │ ├── TiUICanvasView.m │ │ ├── TiUICanvasViewProxy.h │ │ ├── TiUICanvasViewProxy.m │ │ ├── TiUIClipboardProxy.h │ │ ├── TiUIClipboardProxy.m │ │ ├── TiUIDashboardItem.h │ │ ├── TiUIDashboardItem.m │ │ ├── TiUIDashboardItemProxy.h │ │ ├── TiUIDashboardItemProxy.m │ │ ├── TiUIDashboardView.h │ │ ├── TiUIDashboardView.m │ │ ├── TiUIDashboardViewProxy.h │ │ ├── TiUIDashboardViewProxy.m │ │ ├── TiUIEmailDialogProxy.h │ │ ├── TiUIEmailDialogProxy.m │ │ ├── TiUIImageView.h │ │ ├── TiUIImageView.m │ │ ├── TiUIImageViewProxy.h │ │ ├── TiUIImageViewProxy.m │ │ ├── TiUILabel.h │ │ ├── TiUILabel.m │ │ ├── TiUILabelProxy.h │ │ ├── TiUILabelProxy.m │ │ ├── TiUIMaskedImage.h │ │ ├── TiUIMaskedImage.m │ │ ├── TiUIMaskedImageProxy.h │ │ ├── TiUIMaskedImageProxy.m │ │ ├── TiUINavBarButton.h │ │ ├── TiUINavBarButton.m │ │ ├── TiUIOptionDialogProxy.h │ │ ├── TiUIOptionDialogProxy.m │ │ ├── TiUIPicker.h │ │ ├── TiUIPicker.m │ │ ├── TiUIPickerColumnProxy.h │ │ ├── TiUIPickerColumnProxy.m │ │ ├── TiUIPickerProxy.h │ │ ├── TiUIPickerProxy.m │ │ ├── TiUIPickerRowProxy.h │ │ ├── TiUIPickerRowProxy.m │ │ ├── TiUIProgressBar.h │ │ ├── TiUIProgressBar.m │ │ ├── TiUIProgressBarProxy.h │ │ ├── TiUIProgressBarProxy.m │ │ ├── TiUIScrollView.h │ │ ├── TiUIScrollView.m │ │ ├── TiUIScrollViewProxy.h │ │ ├── TiUIScrollViewProxy.m │ │ ├── TiUIScrollableView.h │ │ ├── TiUIScrollableView.m │ │ ├── TiUIScrollableViewProxy.h │ │ ├── TiUIScrollableViewProxy.m │ │ ├── TiUISearchBar.h │ │ ├── TiUISearchBar.m │ │ ├── TiUISearchBarProxy.h │ │ ├── TiUISearchBarProxy.m │ │ ├── TiUISlider.h │ │ ├── TiUISlider.m │ │ ├── TiUISliderProxy.h │ │ ├── TiUISliderProxy.m │ │ ├── TiUISwitch.h │ │ ├── TiUISwitch.m │ │ ├── TiUISwitchProxy.h │ │ ├── TiUISwitchProxy.m │ │ ├── TiUITabController.h │ │ ├── TiUITabController.m │ │ ├── TiUITabGroup.h │ │ ├── TiUITabGroup.m │ │ ├── TiUITabGroupProxy.h │ │ ├── TiUITabGroupProxy.m │ │ ├── TiUITabProxy.h │ │ ├── TiUITabProxy.m │ │ ├── TiUITableView.h │ │ ├── TiUITableView.m │ │ ├── TiUITableViewAction.h │ │ ├── TiUITableViewAction.m │ │ ├── TiUITableViewProxy.h │ │ ├── TiUITableViewProxy.m │ │ ├── TiUITableViewRowProxy.h │ │ ├── TiUITableViewRowProxy.m │ │ ├── TiUITableViewSectionProxy.h │ │ ├── TiUITableViewSectionProxy.m │ │ ├── TiUITextArea.h │ │ ├── TiUITextArea.m │ │ ├── TiUITextAreaProxy.h │ │ ├── TiUITextAreaProxy.m │ │ ├── TiUITextField.h │ │ ├── TiUITextField.m │ │ ├── TiUITextFieldProxy.h │ │ ├── TiUITextFieldProxy.m │ │ ├── TiUITextWidget.h │ │ ├── TiUITextWidget.m │ │ ├── TiUITextWidgetProxy.h │ │ ├── TiUITextWidgetProxy.m │ │ ├── TiUIView.h │ │ ├── TiUIView.m │ │ ├── TiUIViewProxy.h │ │ ├── TiUIViewProxy.m │ │ ├── TiUIWebView.h │ │ ├── TiUIWebView.m │ │ ├── TiUIWebViewProxy.h │ │ ├── TiUIWebViewProxy.m │ │ ├── TiUIWindow.h │ │ ├── TiUIWindow.m │ │ ├── TiUIWindowProxy.h │ │ ├── TiUIWindowProxy.m │ │ ├── TiUIiOS3DMatrix.h │ │ ├── TiUIiOS3DMatrix.m │ │ ├── TiUIiOSAdView.h │ │ ├── TiUIiOSAdView.m │ │ ├── TiUIiOSAdViewProxy.h │ │ ├── TiUIiOSAdViewProxy.m │ │ ├── TiUIiOSCoverFlowView.h │ │ ├── TiUIiOSCoverFlowView.m │ │ ├── TiUIiOSCoverFlowViewProxy.h │ │ ├── TiUIiOSCoverFlowViewProxy.m │ │ ├── TiUIiOSProxy.h │ │ ├── TiUIiOSProxy.m │ │ ├── TiUIiOSTabbedBarProxy.h │ │ ├── TiUIiOSTabbedBarProxy.m │ │ ├── TiUIiOSToolbar.h │ │ ├── TiUIiOSToolbar.m │ │ ├── TiUIiOSToolbarProxy.h │ │ ├── TiUIiOSToolbarProxy.m │ │ ├── TiUIiPadDocumentViewerProxy.h │ │ ├── TiUIiPadDocumentViewerProxy.m │ │ ├── TiUIiPadPopover.h │ │ ├── TiUIiPadPopover.m │ │ ├── TiUIiPadPopoverProxy.h │ │ ├── TiUIiPadPopoverProxy.m │ │ ├── TiUIiPadProxy.h │ │ ├── TiUIiPadProxy.m │ │ ├── TiUIiPadSplitWindow.h │ │ ├── TiUIiPadSplitWindow.m │ │ ├── TiUIiPadSplitWindowButtonProxy.h │ │ ├── TiUIiPadSplitWindowButtonProxy.m │ │ ├── TiUIiPadSplitWindowProxy.h │ │ ├── TiUIiPadSplitWindowProxy.m │ │ ├── TiUIiPhoneActivityIndicatorStyleProxy.h │ │ ├── TiUIiPhoneActivityIndicatorStyleProxy.m │ │ ├── TiUIiPhoneAnimationStyleProxy.h │ │ ├── TiUIiPhoneAnimationStyleProxy.m │ │ ├── TiUIiPhoneNavigationGroup.h │ │ ├── TiUIiPhoneNavigationGroup.m │ │ ├── TiUIiPhoneNavigationGroupProxy.h │ │ ├── TiUIiPhoneNavigationGroupProxy.m │ │ ├── TiUIiPhoneProgressBarStyleProxy.h │ │ ├── TiUIiPhoneProgressBarStyleProxy.m │ │ ├── TiUIiPhoneProxy.h │ │ ├── TiUIiPhoneProxy.m │ │ ├── TiUIiPhoneRowAnimationStyleProxy.h │ │ ├── TiUIiPhoneRowAnimationStyleProxy.m │ │ ├── TiUIiPhoneScrollIndicatorStyleProxy.h │ │ ├── TiUIiPhoneScrollIndicatorStyleProxy.m │ │ ├── TiUIiPhoneStatusBarProxy.h │ │ ├── TiUIiPhoneStatusBarProxy.m │ │ ├── TiUIiPhoneSystemButtonProxy.h │ │ ├── TiUIiPhoneSystemButtonProxy.m │ │ ├── TiUIiPhoneSystemButtonStyleProxy.h │ │ ├── TiUIiPhoneSystemButtonStyleProxy.m │ │ ├── TiUIiPhoneSystemIconProxy.h │ │ ├── TiUIiPhoneSystemIconProxy.m │ │ ├── TiUIiPhoneTableViewCellSelectionStyleProxy.h │ │ ├── TiUIiPhoneTableViewCellSelectionStyleProxy.m │ │ ├── TiUIiPhoneTableViewScrollPositionProxy.h │ │ ├── TiUIiPhoneTableViewScrollPositionProxy.m │ │ ├── TiUIiPhoneTableViewSeparatorStyleProxy.h │ │ ├── TiUIiPhoneTableViewSeparatorStyleProxy.m │ │ ├── TiUIiPhoneTableViewStyleProxy.h │ │ ├── TiUIiPhoneTableViewStyleProxy.m │ │ ├── TiUtils.h │ │ ├── TiUtils.m │ │ ├── TiViewController.h │ │ ├── TiViewController.m │ │ ├── TiViewProxy.h │ │ ├── TiViewProxy.m │ │ ├── TiWindowProxy.h │ │ ├── TiWindowProxy.m │ │ ├── TopTiModule.h │ │ ├── TopTiModule.m │ │ ├── UIImage+Alpha.h │ │ ├── UIImage+Alpha.m │ │ ├── UIImage+Resize.h │ │ ├── UIImage+Resize.m │ │ ├── UIImage+RoundedCorner.h │ │ ├── UIImage+RoundedCorner.m │ │ ├── UIModule.h │ │ ├── UIModule.m │ │ ├── UtilsModule.h │ │ ├── UtilsModule.m │ │ ├── WebFont.h │ │ ├── WebFont.m │ │ ├── Webcolor.h │ │ ├── Webcolor.m │ │ ├── XHRBridge.h │ │ ├── XHRBridge.m │ │ ├── XMLModule.h │ │ ├── XMLModule.m │ │ ├── YahooModule.h │ │ ├── YahooModule.m │ │ └── defines.h │ │ ├── Info.plist │ │ ├── Resources │ │ ├── .version │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── appicon.png │ │ ├── debugger.plist │ │ └── stylesheet.plist │ │ ├── build │ │ ├── Debug-iphoneos │ │ │ └── test_longpress_pinch.app │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── app.js │ │ │ │ └── appicon.png │ │ ├── Debug-iphonesimulator │ │ │ ├── test_longpress_pinch.app.dSYM │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Resources │ │ │ │ │ └── DWARF │ │ │ │ │ └── test_longpress_pinch │ │ │ └── test_longpress_pinch.app │ │ │ │ ├── Default-Landscape.png │ │ │ │ ├── Default-Portrait.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── Info.plist │ │ │ │ ├── PkgInfo │ │ │ │ ├── app.js │ │ │ │ ├── appicon.png │ │ │ │ ├── debugger.plist │ │ │ │ ├── modules │ │ │ │ ├── facebook │ │ │ │ │ └── images │ │ │ │ │ │ ├── LoginNormal.png │ │ │ │ │ │ ├── LoginNormal@2x.png │ │ │ │ │ │ ├── LoginPressed.png │ │ │ │ │ │ ├── LoginPressed@2x.png │ │ │ │ │ │ ├── LoginWithFacebookNormal.png │ │ │ │ │ │ ├── LoginWithFacebookNormal@2x.png │ │ │ │ │ │ ├── LoginWithFacebookPressed.png │ │ │ │ │ │ ├── LoginWithFacebookPressed@2x.png │ │ │ │ │ │ ├── LogoutNormal.png │ │ │ │ │ │ ├── LogoutNormal@2x.png │ │ │ │ │ │ ├── LogoutPressed.png │ │ │ │ │ │ ├── LogoutPressed@2x.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ └── fbicon.png │ │ │ │ └── ui │ │ │ │ │ └── images │ │ │ │ │ ├── badge.png │ │ │ │ │ ├── closeButton.png │ │ │ │ │ └── photoDefault.png │ │ │ │ ├── stylesheet.plist │ │ │ │ └── test_longpress_pinch │ │ ├── build.log │ │ └── test_longpress_pinch.build │ │ │ └── Debug-iphonesimulator │ │ │ └── test_longpress_pinch-universal.build │ │ │ ├── Objects-normal │ │ │ └── i386 │ │ │ │ ├── AFItemView.d │ │ │ │ ├── AFItemView.o │ │ │ │ ├── AFOpenFlowView.d │ │ │ │ ├── AFOpenFlowView.o │ │ │ │ ├── AFUIImageReflection.d │ │ │ │ ├── AFUIImageReflection.o │ │ │ │ ├── APIModule.d │ │ │ │ ├── APIModule.o │ │ │ │ ├── AQRecorder.d │ │ │ │ ├── AQRecorder.o │ │ │ │ ├── ASIAuthenticationDialog.d │ │ │ │ ├── ASIAuthenticationDialog.o │ │ │ │ ├── ASIDataCompressor.d │ │ │ │ ├── ASIDataCompressor.o │ │ │ │ ├── ASIDataDecompressor.d │ │ │ │ ├── ASIDataDecompressor.o │ │ │ │ ├── ASIDownloadCache.d │ │ │ │ ├── ASIDownloadCache.o │ │ │ │ ├── ASIFormDataRequest.d │ │ │ │ ├── ASIFormDataRequest.o │ │ │ │ ├── ASIHTTPRequest.d │ │ │ │ ├── ASIHTTPRequest.o │ │ │ │ ├── ASIInputStream.d │ │ │ │ ├── ASIInputStream.o │ │ │ │ ├── ASINetworkQueue.d │ │ │ │ ├── ASINetworkQueue.o │ │ │ │ ├── AccelerometerModule.d │ │ │ │ ├── AccelerometerModule.o │ │ │ │ ├── AnalyticsModule.d │ │ │ │ ├── AnalyticsModule.o │ │ │ │ ├── AppModule.d │ │ │ │ ├── AppModule.o │ │ │ │ ├── ApplicationDefaults.d │ │ │ │ ├── ApplicationDefaults.o │ │ │ │ ├── ApplicationMods.d │ │ │ │ ├── ApplicationMods.o │ │ │ │ ├── ApplicationRouting.d │ │ │ │ ├── ApplicationRouting.o │ │ │ │ ├── AsyncSocket.d │ │ │ │ ├── AsyncSocket.o │ │ │ │ ├── AsyncUdpSocket.d │ │ │ │ ├── AsyncUdpSocket.o │ │ │ │ ├── AudioStreamer.d │ │ │ │ ├── AudioStreamer.o │ │ │ │ ├── AudioStreamerBC.d │ │ │ │ ├── AudioStreamerBC.o │ │ │ │ ├── AudioStreamerCUR.d │ │ │ │ ├── AudioStreamerCUR.o │ │ │ │ ├── Base64Transcoder.d │ │ │ │ ├── Base64Transcoder.o │ │ │ │ ├── Bridge.d │ │ │ │ ├── Bridge.o │ │ │ │ ├── CADebugMacros.d │ │ │ │ ├── CADebugMacros.o │ │ │ │ ├── CAStreamBasicDescription.d │ │ │ │ ├── CAStreamBasicDescription.o │ │ │ │ ├── CAXException.d │ │ │ │ ├── CAXException.o │ │ │ │ ├── CodecModule.d │ │ │ │ ├── CodecModule.o │ │ │ │ ├── ContactsModule.d │ │ │ │ ├── ContactsModule.o │ │ │ │ ├── DatabaseModule.d │ │ │ │ ├── DatabaseModule.o │ │ │ │ ├── FBDialog.d │ │ │ │ ├── FBDialog.o │ │ │ │ ├── FBLoginButton.d │ │ │ │ ├── FBLoginButton.o │ │ │ │ ├── FBLoginDialog.d │ │ │ │ ├── FBLoginDialog.o │ │ │ │ ├── FBRequest.d │ │ │ │ ├── FBRequest.o │ │ │ │ ├── Facebook.d │ │ │ │ ├── Facebook.o │ │ │ │ ├── FacebookModule.d │ │ │ │ ├── FacebookModule.o │ │ │ │ ├── FilesystemModule.d │ │ │ │ ├── FilesystemModule.o │ │ │ │ ├── GDataXMLNode.d │ │ │ │ ├── GDataXMLNode.o │ │ │ │ ├── GeolocationModule.d │ │ │ │ ├── GeolocationModule.o │ │ │ │ ├── GestureModule.d │ │ │ │ ├── GestureModule.o │ │ │ │ ├── ImageLoader.d │ │ │ │ ├── ImageLoader.o │ │ │ │ ├── KrollBridge.d │ │ │ │ ├── KrollBridge.o │ │ │ │ ├── KrollCallback.d │ │ │ │ ├── KrollCallback.o │ │ │ │ ├── KrollContext.d │ │ │ │ ├── KrollContext.o │ │ │ │ ├── KrollCoverage.d │ │ │ │ ├── KrollCoverage.o │ │ │ │ ├── KrollMethod.d │ │ │ │ ├── KrollMethod.o │ │ │ │ ├── KrollMethodDelegate.d │ │ │ │ ├── KrollMethodDelegate.o │ │ │ │ ├── KrollObject.d │ │ │ │ ├── KrollObject.o │ │ │ │ ├── KrollPropertyDelegate.d │ │ │ │ ├── KrollPropertyDelegate.o │ │ │ │ ├── KrollTimer.d │ │ │ │ ├── KrollTimer.o │ │ │ │ ├── LauncherButton.d │ │ │ │ ├── LauncherButton.o │ │ │ │ ├── LauncherItem.d │ │ │ │ ├── LauncherItem.o │ │ │ │ ├── LauncherView.d │ │ │ │ ├── LauncherView.o │ │ │ │ ├── LayoutConstraint.d │ │ │ │ ├── LayoutConstraint.o │ │ │ │ ├── ListenerEntry.d │ │ │ │ ├── ListenerEntry.o │ │ │ │ ├── LocaleModule.d │ │ │ │ ├── LocaleModule.o │ │ │ │ ├── MGSplitCornersView.d │ │ │ │ ├── MGSplitCornersView.o │ │ │ │ ├── MGSplitDividerView.d │ │ │ │ ├── MGSplitDividerView.o │ │ │ │ ├── MGSplitView.d │ │ │ │ ├── MGSplitView.o │ │ │ │ ├── MGSplitViewController.d │ │ │ │ ├── MGSplitViewController.o │ │ │ │ ├── MapModule.d │ │ │ │ ├── MapModule.o │ │ │ │ ├── MediaModule.d │ │ │ │ ├── MediaModule.o │ │ │ │ ├── Mimetypes.d │ │ │ │ ├── Mimetypes.o │ │ │ │ ├── NSData+Additions.d │ │ │ │ ├── NSData+Additions.o │ │ │ │ ├── NSObject+SBJSON.d │ │ │ │ ├── NSObject+SBJSON.o │ │ │ │ ├── NSString+SBJSON.d │ │ │ │ ├── NSString+SBJSON.o │ │ │ │ ├── NetworkModule.d │ │ │ │ ├── NetworkModule.o │ │ │ │ ├── OperationQueue.d │ │ │ │ ├── OperationQueue.o │ │ │ │ ├── PLSqliteDatabase.d │ │ │ │ ├── PLSqliteDatabase.o │ │ │ │ ├── PLSqlitePreparedStatement.d │ │ │ │ ├── PLSqlitePreparedStatement.o │ │ │ │ ├── PLSqliteResultSet.d │ │ │ │ ├── PLSqliteResultSet.o │ │ │ │ ├── PlatformModule.d │ │ │ │ ├── PlatformModule.o │ │ │ │ ├── PlausibleDatabase.d │ │ │ │ ├── PlausibleDatabase.o │ │ │ │ ├── Reachability.d │ │ │ │ ├── Reachability.o │ │ │ │ ├── SBJSON-683265DA1C69304E.d │ │ │ │ ├── SBJSON-683265DA1C69304E.o │ │ │ │ ├── SBJSON-D3E5F9E305C04645.d │ │ │ │ ├── SBJSON-D3E5F9E305C04645.o │ │ │ │ ├── SBJsonBase.d │ │ │ │ ├── SBJsonBase.o │ │ │ │ ├── SBJsonParser.d │ │ │ │ ├── SBJsonParser.o │ │ │ │ ├── SBJsonWriter.d │ │ │ │ ├── SBJsonWriter.o │ │ │ │ ├── SCListener.d │ │ │ │ ├── SCListener.o │ │ │ │ ├── StreamModule.d │ │ │ │ ├── StreamModule.o │ │ │ │ ├── TIDOMCharacterDataProxy.d │ │ │ │ ├── TIDOMCharacterDataProxy.o │ │ │ │ ├── TIDOMDOMImplementationProxy.d │ │ │ │ ├── TIDOMDOMImplementationProxy.o │ │ │ │ ├── TIDOMDocumentTypeProxy.d │ │ │ │ ├── TIDOMDocumentTypeProxy.o │ │ │ │ ├── Ti2DMatrix.d │ │ │ │ ├── Ti2DMatrix.o │ │ │ │ ├── TiAction.d │ │ │ │ ├── TiAction.o │ │ │ │ ├── TiAnimation.d │ │ │ │ ├── TiAnimation.o │ │ │ │ ├── TiApp.d │ │ │ │ ├── TiApp.o │ │ │ │ ├── TiAppPropertiesProxy.d │ │ │ │ ├── TiAppPropertiesProxy.o │ │ │ │ ├── TiAppiOSBackgroundServiceProxy.d │ │ │ │ ├── TiAppiOSBackgroundServiceProxy.o │ │ │ │ ├── TiAppiOSLocalNotificationProxy.d │ │ │ │ ├── TiAppiOSLocalNotificationProxy.o │ │ │ │ ├── TiAppiOSProxy.d │ │ │ │ ├── TiAppiOSProxy.o │ │ │ │ ├── TiBase.d │ │ │ │ ├── TiBase.o │ │ │ │ ├── TiBlob.d │ │ │ │ ├── TiBlob.o │ │ │ │ ├── TiBuffer.d │ │ │ │ ├── TiBuffer.o │ │ │ │ ├── TiButtonUtil.d │ │ │ │ ├── TiButtonUtil.o │ │ │ │ ├── TiColor.d │ │ │ │ ├── TiColor.o │ │ │ │ ├── TiComplexValue.d │ │ │ │ ├── TiComplexValue.o │ │ │ │ ├── TiContactsGroup.d │ │ │ │ ├── TiContactsGroup.o │ │ │ │ ├── TiContactsPerson.d │ │ │ │ ├── TiContactsPerson.o │ │ │ │ ├── TiDOMAttrProxy.d │ │ │ │ ├── TiDOMAttrProxy.o │ │ │ │ ├── TiDOMCDATANodeProxy.d │ │ │ │ ├── TiDOMCDATANodeProxy.o │ │ │ │ ├── TiDOMCommentProxy.d │ │ │ │ ├── TiDOMCommentProxy.o │ │ │ │ ├── TiDOMDocFragProxy.d │ │ │ │ ├── TiDOMDocFragProxy.o │ │ │ │ ├── TiDOMDocumentProxy.d │ │ │ │ ├── TiDOMDocumentProxy.o │ │ │ │ ├── TiDOMElementProxy.d │ │ │ │ ├── TiDOMElementProxy.o │ │ │ │ ├── TiDOMEntityProxy.d │ │ │ │ ├── TiDOMEntityProxy.o │ │ │ │ ├── TiDOMEntityRefProxy.d │ │ │ │ ├── TiDOMEntityRefProxy.o │ │ │ │ ├── TiDOMNamedNodeMapProxy.d │ │ │ │ ├── TiDOMNamedNodeMapProxy.o │ │ │ │ ├── TiDOMNodeListProxy.d │ │ │ │ ├── TiDOMNodeListProxy.o │ │ │ │ ├── TiDOMNodeProxy.d │ │ │ │ ├── TiDOMNodeProxy.o │ │ │ │ ├── TiDOMNotationProxy.d │ │ │ │ ├── TiDOMNotationProxy.o │ │ │ │ ├── TiDOMPIProxy.d │ │ │ │ ├── TiDOMPIProxy.o │ │ │ │ ├── TiDOMTextNodeProxy.d │ │ │ │ ├── TiDOMTextNodeProxy.o │ │ │ │ ├── TiDOMValidator.d │ │ │ │ ├── TiDOMValidator.o │ │ │ │ ├── TiDataStream.d │ │ │ │ ├── TiDataStream.o │ │ │ │ ├── TiDatabaseProxy.d │ │ │ │ ├── TiDatabaseProxy.o │ │ │ │ ├── TiDatabaseResultSetProxy.d │ │ │ │ ├── TiDatabaseResultSetProxy.o │ │ │ │ ├── TiDimension.d │ │ │ │ ├── TiDimension.o │ │ │ │ ├── TiErrorController.d │ │ │ │ ├── TiErrorController.o │ │ │ │ ├── TiFacebookDialogRequest.d │ │ │ │ ├── TiFacebookDialogRequest.o │ │ │ │ ├── TiFacebookLoginButton.d │ │ │ │ ├── TiFacebookLoginButton.o │ │ │ │ ├── TiFacebookLoginButtonProxy.d │ │ │ │ ├── TiFacebookLoginButtonProxy.o │ │ │ │ ├── TiFacebookRequest.d │ │ │ │ ├── TiFacebookRequest.o │ │ │ │ ├── TiFile.d │ │ │ │ ├── TiFile.o │ │ │ │ ├── TiFilesystemBlobProxy.d │ │ │ │ ├── TiFilesystemBlobProxy.o │ │ │ │ ├── TiFilesystemFileProxy.d │ │ │ │ ├── TiFilesystemFileProxy.o │ │ │ │ ├── TiFilesystemFileStreamProxy.d │ │ │ │ ├── TiFilesystemFileStreamProxy.o │ │ │ │ ├── TiGradient.d │ │ │ │ ├── TiGradient.o │ │ │ │ ├── TiHost.d │ │ │ │ ├── TiHost.o │ │ │ │ ├── TiLayoutQueue.d │ │ │ │ ├── TiLayoutQueue.o │ │ │ │ ├── TiLocale.d │ │ │ │ ├── TiLocale.o │ │ │ │ ├── TiMapAnnotationProxy.d │ │ │ │ ├── TiMapAnnotationProxy.o │ │ │ │ ├── TiMapImageAnnotationView.d │ │ │ │ ├── TiMapImageAnnotationView.o │ │ │ │ ├── TiMapPinAnnotationView.d │ │ │ │ ├── TiMapPinAnnotationView.o │ │ │ │ ├── TiMapView.d │ │ │ │ ├── TiMapView.o │ │ │ │ ├── TiMapViewProxy.d │ │ │ │ ├── TiMapViewProxy.o │ │ │ │ ├── TiMediaAudioPlayerProxy.d │ │ │ │ ├── TiMediaAudioPlayerProxy.o │ │ │ │ ├── TiMediaAudioRecorderProxy.d │ │ │ │ ├── TiMediaAudioRecorderProxy.o │ │ │ │ ├── TiMediaAudioSession.d │ │ │ │ ├── TiMediaAudioSession.o │ │ │ │ ├── TiMediaItem.d │ │ │ │ ├── TiMediaItem.o │ │ │ │ ├── TiMediaMusicPlayer.d │ │ │ │ ├── TiMediaMusicPlayer.o │ │ │ │ ├── TiMediaSoundProxy.d │ │ │ │ ├── TiMediaSoundProxy.o │ │ │ │ ├── TiMediaVideoPlayer.d │ │ │ │ ├── TiMediaVideoPlayer.o │ │ │ │ ├── TiMediaVideoPlayerProxy.d │ │ │ │ ├── TiMediaVideoPlayerProxy.o │ │ │ │ ├── TiModule.d │ │ │ │ ├── TiModule.o │ │ │ │ ├── TiNetworkBonjourBrowserProxy.d │ │ │ │ ├── TiNetworkBonjourBrowserProxy.o │ │ │ │ ├── TiNetworkBonjourServiceProxy.d │ │ │ │ ├── TiNetworkBonjourServiceProxy.o │ │ │ │ ├── TiNetworkHTTPClientProxy.d │ │ │ │ ├── TiNetworkHTTPClientProxy.o │ │ │ │ ├── TiNetworkHTTPClientResultProxy.d │ │ │ │ ├── TiNetworkHTTPClientResultProxy.o │ │ │ │ ├── TiNetworkSocketProxy.d │ │ │ │ ├── TiNetworkSocketProxy.o │ │ │ │ ├── TiNetworkSocketTCPProxy.d │ │ │ │ ├── TiNetworkSocketTCPProxy.o │ │ │ │ ├── TiNetworkTCPSocketProxy.d │ │ │ │ ├── TiNetworkTCPSocketProxy.o │ │ │ │ ├── TiPlatformDisplayCaps.d │ │ │ │ ├── TiPlatformDisplayCaps.o │ │ │ │ ├── TiPoint.d │ │ │ │ ├── TiPoint.o │ │ │ │ ├── TiProxy.d │ │ │ │ ├── TiProxy.o │ │ │ │ ├── TiPublicAPI.d │ │ │ │ ├── TiPublicAPI.o │ │ │ │ ├── TiRange.d │ │ │ │ ├── TiRange.o │ │ │ │ ├── TiRect.d │ │ │ │ ├── TiRect.o │ │ │ │ ├── TiRootViewController.d │ │ │ │ ├── TiRootViewController.o │ │ │ │ ├── TiStreamProxy.d │ │ │ │ ├── TiStreamProxy.o │ │ │ │ ├── TiStylesheet.d │ │ │ │ ├── TiStylesheet.o │ │ │ │ ├── TiThreading.d │ │ │ │ ├── TiThreading.o │ │ │ │ ├── TiToolbar.d │ │ │ │ ├── TiToolbar.o │ │ │ │ ├── TiUIActivityIndicator.d │ │ │ │ ├── TiUIActivityIndicator.o │ │ │ │ ├── TiUIActivityIndicatorProxy.d │ │ │ │ ├── TiUIActivityIndicatorProxy.o │ │ │ │ ├── TiUIAlertDialogProxy.d │ │ │ │ ├── TiUIAlertDialogProxy.o │ │ │ │ ├── TiUIButton.d │ │ │ │ ├── TiUIButton.o │ │ │ │ ├── TiUIButtonBar.d │ │ │ │ ├── TiUIButtonBar.o │ │ │ │ ├── TiUIButtonBarProxy.d │ │ │ │ ├── TiUIButtonBarProxy.o │ │ │ │ ├── TiUIButtonProxy.d │ │ │ │ ├── TiUIButtonProxy.o │ │ │ │ ├── TiUICanvasView.d │ │ │ │ ├── TiUICanvasView.o │ │ │ │ ├── TiUICanvasViewProxy.d │ │ │ │ ├── TiUICanvasViewProxy.o │ │ │ │ ├── TiUIClipboardProxy.d │ │ │ │ ├── TiUIClipboardProxy.o │ │ │ │ ├── TiUIDashboardItem.d │ │ │ │ ├── TiUIDashboardItem.o │ │ │ │ ├── TiUIDashboardItemProxy.d │ │ │ │ ├── TiUIDashboardItemProxy.o │ │ │ │ ├── TiUIDashboardView.d │ │ │ │ ├── TiUIDashboardView.o │ │ │ │ ├── TiUIDashboardViewProxy.d │ │ │ │ ├── TiUIDashboardViewProxy.o │ │ │ │ ├── TiUIEmailDialogProxy.d │ │ │ │ ├── TiUIEmailDialogProxy.o │ │ │ │ ├── TiUIImageView.d │ │ │ │ ├── TiUIImageView.o │ │ │ │ ├── TiUIImageViewProxy.d │ │ │ │ ├── TiUIImageViewProxy.o │ │ │ │ ├── TiUILabel.d │ │ │ │ ├── TiUILabel.o │ │ │ │ ├── TiUILabelProxy.d │ │ │ │ ├── TiUILabelProxy.o │ │ │ │ ├── TiUIMaskedImage.d │ │ │ │ ├── TiUIMaskedImage.o │ │ │ │ ├── TiUIMaskedImageProxy.d │ │ │ │ ├── TiUIMaskedImageProxy.o │ │ │ │ ├── TiUINavBarButton.d │ │ │ │ ├── TiUINavBarButton.o │ │ │ │ ├── TiUIOptionDialogProxy.d │ │ │ │ ├── TiUIOptionDialogProxy.o │ │ │ │ ├── TiUIPicker.d │ │ │ │ ├── TiUIPicker.o │ │ │ │ ├── TiUIPickerColumnProxy.d │ │ │ │ ├── TiUIPickerColumnProxy.o │ │ │ │ ├── TiUIPickerProxy.d │ │ │ │ ├── TiUIPickerProxy.o │ │ │ │ ├── TiUIPickerRowProxy.d │ │ │ │ ├── TiUIPickerRowProxy.o │ │ │ │ ├── TiUIProgressBar.d │ │ │ │ ├── TiUIProgressBar.o │ │ │ │ ├── TiUIProgressBarProxy.d │ │ │ │ ├── TiUIProgressBarProxy.o │ │ │ │ ├── TiUIScrollView.d │ │ │ │ ├── TiUIScrollView.o │ │ │ │ ├── TiUIScrollViewProxy.d │ │ │ │ ├── TiUIScrollViewProxy.o │ │ │ │ ├── TiUIScrollableView.d │ │ │ │ ├── TiUIScrollableView.o │ │ │ │ ├── TiUIScrollableViewProxy.d │ │ │ │ ├── TiUIScrollableViewProxy.o │ │ │ │ ├── TiUISearchBar.d │ │ │ │ ├── TiUISearchBar.o │ │ │ │ ├── TiUISearchBarProxy.d │ │ │ │ ├── TiUISearchBarProxy.o │ │ │ │ ├── TiUISlider.d │ │ │ │ ├── TiUISlider.o │ │ │ │ ├── TiUISliderProxy.d │ │ │ │ ├── TiUISliderProxy.o │ │ │ │ ├── TiUISwitch.d │ │ │ │ ├── TiUISwitch.o │ │ │ │ ├── TiUISwitchProxy.d │ │ │ │ ├── TiUISwitchProxy.o │ │ │ │ ├── TiUITabController.d │ │ │ │ ├── TiUITabController.o │ │ │ │ ├── TiUITabGroup.d │ │ │ │ ├── TiUITabGroup.o │ │ │ │ ├── TiUITabGroupProxy.d │ │ │ │ ├── TiUITabGroupProxy.o │ │ │ │ ├── TiUITabProxy.d │ │ │ │ ├── TiUITabProxy.o │ │ │ │ ├── TiUITableView.d │ │ │ │ ├── TiUITableView.o │ │ │ │ ├── TiUITableViewAction.d │ │ │ │ ├── TiUITableViewAction.o │ │ │ │ ├── TiUITableViewProxy.d │ │ │ │ ├── TiUITableViewProxy.o │ │ │ │ ├── TiUITableViewRowProxy.d │ │ │ │ ├── TiUITableViewRowProxy.o │ │ │ │ ├── TiUITableViewSectionProxy.d │ │ │ │ ├── TiUITableViewSectionProxy.o │ │ │ │ ├── TiUITextArea.d │ │ │ │ ├── TiUITextArea.o │ │ │ │ ├── TiUITextAreaProxy.d │ │ │ │ ├── TiUITextAreaProxy.o │ │ │ │ ├── TiUITextField.d │ │ │ │ ├── TiUITextField.o │ │ │ │ ├── TiUITextFieldProxy.d │ │ │ │ ├── TiUITextFieldProxy.o │ │ │ │ ├── TiUITextWidget.d │ │ │ │ ├── TiUITextWidget.o │ │ │ │ ├── TiUITextWidgetProxy.d │ │ │ │ ├── TiUITextWidgetProxy.o │ │ │ │ ├── TiUIView.d │ │ │ │ ├── TiUIView.o │ │ │ │ ├── TiUIViewProxy.d │ │ │ │ ├── TiUIViewProxy.o │ │ │ │ ├── TiUIWebView.d │ │ │ │ ├── TiUIWebView.o │ │ │ │ ├── TiUIWebViewProxy.d │ │ │ │ ├── TiUIWebViewProxy.o │ │ │ │ ├── TiUIWindow.d │ │ │ │ ├── TiUIWindow.o │ │ │ │ ├── TiUIWindowProxy.d │ │ │ │ ├── TiUIWindowProxy.o │ │ │ │ ├── TiUIiOS3DMatrix.d │ │ │ │ ├── TiUIiOS3DMatrix.o │ │ │ │ ├── TiUIiOSAdView.d │ │ │ │ ├── TiUIiOSAdView.o │ │ │ │ ├── TiUIiOSAdViewProxy.d │ │ │ │ ├── TiUIiOSAdViewProxy.o │ │ │ │ ├── TiUIiOSCoverFlowView.d │ │ │ │ ├── TiUIiOSCoverFlowView.o │ │ │ │ ├── TiUIiOSCoverFlowViewProxy.d │ │ │ │ ├── TiUIiOSCoverFlowViewProxy.o │ │ │ │ ├── TiUIiOSProxy.d │ │ │ │ ├── TiUIiOSProxy.o │ │ │ │ ├── TiUIiOSTabbedBarProxy.d │ │ │ │ ├── TiUIiOSTabbedBarProxy.o │ │ │ │ ├── TiUIiOSToolbar.d │ │ │ │ ├── TiUIiOSToolbar.o │ │ │ │ ├── TiUIiOSToolbarProxy.d │ │ │ │ ├── TiUIiOSToolbarProxy.o │ │ │ │ ├── TiUIiPadDocumentViewerProxy.d │ │ │ │ ├── TiUIiPadDocumentViewerProxy.o │ │ │ │ ├── TiUIiPadPopover.d │ │ │ │ ├── TiUIiPadPopover.o │ │ │ │ ├── TiUIiPadPopoverProxy.d │ │ │ │ ├── TiUIiPadPopoverProxy.o │ │ │ │ ├── TiUIiPadProxy.d │ │ │ │ ├── TiUIiPadProxy.o │ │ │ │ ├── TiUIiPadSplitWindow.d │ │ │ │ ├── TiUIiPadSplitWindow.o │ │ │ │ ├── TiUIiPadSplitWindowButtonProxy.d │ │ │ │ ├── TiUIiPadSplitWindowButtonProxy.o │ │ │ │ ├── TiUIiPadSplitWindowProxy.d │ │ │ │ ├── TiUIiPadSplitWindowProxy.o │ │ │ │ ├── TiUIiPhoneActivityIndicatorStyleProxy.d │ │ │ │ ├── TiUIiPhoneActivityIndicatorStyleProxy.o │ │ │ │ ├── TiUIiPhoneAnimationStyleProxy.d │ │ │ │ ├── TiUIiPhoneAnimationStyleProxy.o │ │ │ │ ├── TiUIiPhoneNavigationGroup.d │ │ │ │ ├── TiUIiPhoneNavigationGroup.o │ │ │ │ ├── TiUIiPhoneNavigationGroupProxy.d │ │ │ │ ├── TiUIiPhoneNavigationGroupProxy.o │ │ │ │ ├── TiUIiPhoneProgressBarStyleProxy.d │ │ │ │ ├── TiUIiPhoneProgressBarStyleProxy.o │ │ │ │ ├── TiUIiPhoneProxy.d │ │ │ │ ├── TiUIiPhoneProxy.o │ │ │ │ ├── TiUIiPhoneRowAnimationStyleProxy.d │ │ │ │ ├── TiUIiPhoneRowAnimationStyleProxy.o │ │ │ │ ├── TiUIiPhoneScrollIndicatorStyleProxy.d │ │ │ │ ├── TiUIiPhoneScrollIndicatorStyleProxy.o │ │ │ │ ├── TiUIiPhoneStatusBarProxy.d │ │ │ │ ├── TiUIiPhoneStatusBarProxy.o │ │ │ │ ├── TiUIiPhoneSystemButtonProxy.d │ │ │ │ ├── TiUIiPhoneSystemButtonProxy.o │ │ │ │ ├── TiUIiPhoneSystemButtonStyleProxy.d │ │ │ │ ├── TiUIiPhoneSystemButtonStyleProxy.o │ │ │ │ ├── TiUIiPhoneSystemIconProxy.d │ │ │ │ ├── TiUIiPhoneSystemIconProxy.o │ │ │ │ ├── TiUIiPhoneTableViewCellSelectionStyleProxy.d │ │ │ │ ├── TiUIiPhoneTableViewCellSelectionStyleProxy.o │ │ │ │ ├── TiUIiPhoneTableViewScrollPositionProxy.d │ │ │ │ ├── TiUIiPhoneTableViewScrollPositionProxy.o │ │ │ │ ├── TiUIiPhoneTableViewSeparatorStyleProxy.d │ │ │ │ ├── TiUIiPhoneTableViewSeparatorStyleProxy.o │ │ │ │ ├── TiUIiPhoneTableViewStyleProxy.d │ │ │ │ ├── TiUIiPhoneTableViewStyleProxy.o │ │ │ │ ├── TiUtils.d │ │ │ │ ├── TiUtils.o │ │ │ │ ├── TiViewController.d │ │ │ │ ├── TiViewController.o │ │ │ │ ├── TiViewProxy.d │ │ │ │ ├── TiViewProxy.o │ │ │ │ ├── TiWindowProxy.d │ │ │ │ ├── TiWindowProxy.o │ │ │ │ ├── TopTiModule.d │ │ │ │ ├── TopTiModule.o │ │ │ │ ├── UIImage+Alpha.d │ │ │ │ ├── UIImage+Alpha.o │ │ │ │ ├── UIImage+Resize.d │ │ │ │ ├── UIImage+Resize.o │ │ │ │ ├── UIImage+RoundedCorner.d │ │ │ │ ├── UIImage+RoundedCorner.o │ │ │ │ ├── UIImageExtras.d │ │ │ │ ├── UIImageExtras.o │ │ │ │ ├── UIModule.d │ │ │ │ ├── UIModule.o │ │ │ │ ├── UtilsModule.d │ │ │ │ ├── UtilsModule.o │ │ │ │ ├── WebFont.d │ │ │ │ ├── WebFont.o │ │ │ │ ├── Webcolor.d │ │ │ │ ├── Webcolor.o │ │ │ │ ├── XHRBridge.d │ │ │ │ ├── XHRBridge.o │ │ │ │ ├── XMLModule.d │ │ │ │ ├── XMLModule.o │ │ │ │ ├── YahooModule.d │ │ │ │ ├── YahooModule.o │ │ │ │ ├── main.d │ │ │ │ ├── main.o │ │ │ │ └── test_longpress_pinch.LinkFileList │ │ │ ├── Script-DABB369F12E8CB280026A6EA.sh │ │ │ ├── Script-DABB37B812E8CB280026A6EA.sh │ │ │ ├── build-state.dat │ │ │ ├── test_longpress_pinch-all-target-headers.hmap │ │ │ ├── test_longpress_pinch-generated-files.hmap │ │ │ ├── test_longpress_pinch-own-target-headers.hmap │ │ │ ├── test_longpress_pinch-project-headers.hmap │ │ │ ├── test_longpress_pinch-universal.dep │ │ │ └── test_longpress_pinch.hmap │ │ ├── headers │ │ └── TiCore │ │ │ ├── Ti.h │ │ │ ├── TiBase.h │ │ │ ├── TiContextRef.h │ │ │ ├── TiContextRefPrivate.h │ │ │ ├── TiCore.h │ │ │ ├── TiObjectRef.h │ │ │ ├── TiStringRef.h │ │ │ ├── TiStringRefCF.h │ │ │ ├── TiValueRef.h │ │ │ └── WebKitAvailability.h │ │ ├── lib │ │ ├── libTiCore.a │ │ ├── libti_ios_debugger.a │ │ └── libtiverify.a │ │ ├── main.m │ │ ├── module.xcconfig │ │ ├── project.xcconfig │ │ ├── test_longpress_pinch.xcodeproj │ │ └── project.pbxproj │ │ └── test_longpress_pinch_Prefix.pch ├── test_videoplayer │ ├── build.log │ └── build │ │ └── android │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── bin │ │ ├── app-unsigned.apk │ │ ├── app.ap_ │ │ ├── app.apk │ │ ├── assets │ │ │ ├── Resources │ │ │ │ ├── app.js │ │ │ │ ├── appicon.png │ │ │ │ ├── default.png │ │ │ │ └── movie.mp4 │ │ │ ├── app.json │ │ │ ├── index.json │ │ │ └── tiapp.xml │ │ ├── build_info.json │ │ ├── classes.dex │ │ └── classes │ │ │ └── test │ │ │ └── videoplayer │ │ │ ├── ApplicationStylesheet.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── Test_videoplayerActivity.class │ │ │ ├── Test_videoplayerAppInfo.class │ │ │ └── Test_videoplayerApplication.class │ │ ├── default.properties │ │ ├── gen │ │ └── test │ │ │ └── videoplayer │ │ │ ├── ApplicationStylesheet.java │ │ │ ├── R.java │ │ │ ├── Test_videoplayerActivity.java │ │ │ ├── Test_videoplayerAppInfo.java │ │ │ └── Test_videoplayerApplication.java │ │ └── res │ │ ├── drawable │ │ ├── appicon.png │ │ └── background.png │ │ ├── layout │ │ └── titanium_tabgroup.xml │ │ └── values │ │ ├── strings.xml │ │ └── theme.xml └── vo.md ├── ep-021 ├── README.md └── vo.md ├── ep-022 ├── README.md └── vo.md └── ep-023 └── README.md /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "ep-022/pathmenu.js"] 2 | path = ep-022/pathmenu.js 3 | url = git://github.com/tonylukasavage/pathmenu.js.git 4 | [submodule "ep-022/path.animator"] 5 | path = ep-022/path.animator 6 | url = git://github.com/tonylukasavage/path.animator.git 7 | [submodule "ep-023/TiShadow"] 8 | path = ep-023/TiShadow 9 | url = https://github.com/dbankier/TiShadow.git 10 | -------------------------------------------------------------------------------- /ep-002/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | build 3 | -------------------------------------------------------------------------------- /ep-002/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Fri Sep 23 11:18:14 PDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.2 copy 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-002/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-002/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-002/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-002/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /ep-002/Resources/app.js: -------------------------------------------------------------------------------- 1 | //require the UI components necessary to drive the test 2 | var NavigationController = require('NavigationController').NavigationController, 3 | TestWindow = require('TestWindow').TestWindow; 4 | 5 | //create NavigationController which will drive our simple application 6 | var controller = new NavigationController(); 7 | 8 | //open initial window 9 | controller.open(new TestWindow(controller)); -------------------------------------------------------------------------------- /ep-002/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-002/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-002/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-002/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-002/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-002/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-002/manifest: -------------------------------------------------------------------------------- 1 | #appname: NavigationControllerDemo 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.navcontroller 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 722214c4-8d7d-48b1-84df-be8bbf80d385 9 | -------------------------------------------------------------------------------- /ep-003/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | CustomComponents/build 3 | -------------------------------------------------------------------------------- /ep-003/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Wed Aug 24 08:49:02 CDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.2 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-003/CustomComponents/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /ep-003/CustomComponents/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Wed Aug 24 09:04:49 CDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.2 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-003/CustomComponents/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-003/CustomComponents/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/images/star.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/images/star_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/images/star_half.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/images/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/images/star_off.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-003/CustomComponents/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-003/CustomComponents/checklist.txt: -------------------------------------------------------------------------------- 1 | Custom Component Checklist: 2 | --------------------------- 3 | 4 | 1.) Create and return a custom component [X] 5 | 2.) Create a public interface [X] 6 | 3.) Instrument with custom events [X] 7 | -------------------------------------------------------------------------------- /ep-003/CustomComponents/manifest: -------------------------------------------------------------------------------- 1 | #appname: CustomComponents 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appceleratior.custom 6 | #desc: undefined 7 | #type: ipad 8 | #guid: ab88edf3-6122-48ea-a20a-fd9dbec082cb 9 | -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/com.aptana.core.io/connections.25: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/com.aptana.syncing.core/defaultConnection.25: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Default 5 | file:/Users/kevin 6 | 7 | -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/com.aptana.syncing.core/sites.25: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/.metadata/.plugins/org.eclipse.core.resources/.root/2.tree -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/org.eclipse.core.resources/.safetable/com.aptana.core.io.25: -------------------------------------------------------------------------------- 1 | #safe table 2 | #Wed Aug 31 16:59:44 CDT 2011 3 | connections=connections.25 4 | -------------------------------------------------------------------------------- /ep-004/.metadata/.plugins/org.eclipse.core.resources/.safetable/com.aptana.syncing.core.25: -------------------------------------------------------------------------------- 1 | #safe table 2 | #Wed Aug 31 16:59:44 CDT 2011 3 | defaultConnection=defaultConnection.25 4 | sites=sites.25 5 | -------------------------------------------------------------------------------- /ep-004/UtilityApplication/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /ep-004/UtilityApplication/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Wed Aug 31 13:16:15 CDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.3.v20110826161351 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-004/UtilityApplication/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-004/UtilityApplication/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/app.js: -------------------------------------------------------------------------------- 1 | var UtilityWindow = require('ui/UtilityWindow').UtilityWindow, 2 | SettingsView = require('ui/SettingsView').SettingsView, 3 | MainView = require('ui/MainView').MainView; 4 | 5 | new UtilityWindow(new MainView(), new SettingsView()).open(); 6 | -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/images/info.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-004/UtilityApplication/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-004/UtilityApplication/Resources/ui/MainView.js: -------------------------------------------------------------------------------- 1 | exports.MainView = function() { 2 | var instance = Ti.UI.createView({ 3 | backgroundColor:'#fff' 4 | }); 5 | 6 | instance.add(Ti.UI.createLabel({ 7 | text:'Main View', 8 | color:'#000', 9 | height:'auto', 10 | width:'auto' 11 | })); 12 | 13 | return instance; 14 | }; 15 | -------------------------------------------------------------------------------- /ep-004/UtilityApplication/manifest: -------------------------------------------------------------------------------- 1 | #appname: UtilityApplication 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.utility 6 | #desc: undefined 7 | #type: ipad 8 | #guid: c4219be9-35b2-4965-873d-94154abfa4ab 9 | -------------------------------------------------------------------------------- /ep-005/Parse/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /ep-005/Parse/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Wed Sep 07 05:43:36 BST 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.3.v20110826161351 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-005/Parse/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-005/Parse/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/credentials.js: -------------------------------------------------------------------------------- 1 | var APPLICATION_ID = 'YOUR_APP_ID_HERE'; 2 | var MASTER_KEY = 'YOUR_MASTER_KEY_HERE'; 3 | -------------------------------------------------------------------------------- /ep-005/Parse/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-005/Parse/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-005/Parse/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-005/Parse/manifest: -------------------------------------------------------------------------------- 1 | #appname: Parse 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.parse 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 8358f957-6805-485f-adf6-856ebddc24ef 9 | -------------------------------------------------------------------------------- /ep-006/SCTabGroup/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /ep-006/SCTabGroup/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Fri Sep 09 14:22:40 CDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.7.2 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-006/SCTabGroup/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-006/SCTabGroup/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-land-hdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-land-ldpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-land-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-land-mdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-port-hdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-port-ldpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/android/images/res-notlong-port-mdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/android/images/res-notlong-port-mdpi/default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/images/KS_nav_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/images/KS_nav_ui.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/images/KS_nav_views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/images/KS_nav_views.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-006/SCTabGroup/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-006/SCTabGroup/manifest: -------------------------------------------------------------------------------- 1 | #appname: SCTabGroup 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.sctabgroup 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 2231c68b-1086-4929-bf4d-c8b9716d4e96 9 | -------------------------------------------------------------------------------- /ep-007/WUPHF/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /ep-007/WUPHF/.settings/com.appcelerator.titanium.mobile.prefs: -------------------------------------------------------------------------------- 1 | #Wed Sep 21 16:51:42 PDT 2011 2 | MOBILE_PROJECT_SDK_VERSION=1.8.0.v20110913101350 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-007/WUPHF/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-007/WUPHF/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/.DS_Store -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/android/default.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/app.js: -------------------------------------------------------------------------------- 1 | require('lib/require').monkeypatch(this); 2 | require('lib/credentials').set(this); 3 | 4 | //create a globally accessible Twilio client interface 5 | var Twilio = require('lib/Twilio'); 6 | var $T = new Twilio.RestClient(APPLICATION_SID,AUTH_TOKEN); 7 | 8 | //initialize app UI 9 | var AppWindow = require('ui/AppWindow'); 10 | new AppWindow().open(); 11 | -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/button.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/button_down.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/config.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/message.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/titanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/titanium.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/twilio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/twilio.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/images/wuphf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/images/wuphf.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-007/WUPHF/Resources/lib/credentials.js: -------------------------------------------------------------------------------- 1 | exports.set = function(obj) { 2 | obj.APPLICATION_SID = 'YOUR_TWILIO_SID'; 3 | obj.AUTH_TOKEN = 'YOUR_TWILIO_AUTH_TOKEN'; 4 | }; 5 | -------------------------------------------------------------------------------- /ep-007/WUPHF/build/android/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/build/android/.DS_Store -------------------------------------------------------------------------------- /ep-007/WUPHF/build/android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ep-007/WUPHF/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-007/WUPHF/build/iphone/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-007/WUPHF/build/iphone/.DS_Store -------------------------------------------------------------------------------- /ep-007/WUPHF/manifest: -------------------------------------------------------------------------------- 1 | #appname: WUPHF 2 | #publisher: kevin 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.wuphf 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 36e1a900-1c57-48b3-8232-319bef349993 9 | -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-008/MacDesktopFeatures/.DS_Store -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | tmp 3 | -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/.settings/com.appcelerator.titanium.desktop.prefs: -------------------------------------------------------------------------------- 1 | #Wed Sep 28 05:23:11 CDT 2011 2 | DESKTOP_PROJECT_SDK_VERSION=1.2.0.RC4 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/Resources/default_app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-008/MacDesktopFeatures/Resources/default_app_logo.png -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/Resources/tweetanium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-008/MacDesktopFeatures/Resources/tweetanium.png -------------------------------------------------------------------------------- /ep-008/MacDesktopFeatures/Resources/tweetanium16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-008/MacDesktopFeatures/Resources/tweetanium16.png -------------------------------------------------------------------------------- /ep-009/IntentCookbook/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/android/* 4 | !build/android/.gitignore 5 | .settings 6 | build.log 7 | -------------------------------------------------------------------------------- /ep-009/IntentCookbook/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-009/IntentCookbook/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/android/default.png -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/toExternal/cricket.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/toExternal/cricket.wav -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/toExternal/movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/toExternal/movie.mp4 -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/toExternal/titanium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/toExternal/titanium.jpg -------------------------------------------------------------------------------- /ep-009/IntentCookbook/Resources/toExternal/w4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/Resources/toExternal/w4.pdf -------------------------------------------------------------------------------- /ep-009/IntentCookbook/build/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/IntentCookbook/build/android/.gitignore -------------------------------------------------------------------------------- /ep-009/IntentCookbook/manifest: -------------------------------------------------------------------------------- 1 | #appname: IntentCookbook 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.IntentCookbook 6 | #desc: undefined 7 | #type: mobile 8 | #guid: ebc82369-b841-453b-bcaa-ec8b004c56a7 9 | -------------------------------------------------------------------------------- /ep-009/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-009/README.md -------------------------------------------------------------------------------- /ep-010/Forms/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | build/android/* 3 | !build/android/.gitignore 4 | .DS_Store 5 | .settings 6 | build/iphone/* 7 | !build/iphone/.gitignore 8 | -------------------------------------------------------------------------------- /ep-010/Forms/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-010/Forms/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-010/Forms/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/android/default.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-010/Forms/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-010/Forms/build/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/build/android/.gitignore -------------------------------------------------------------------------------- /ep-010/Forms/build/iphone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-010/Forms/build/iphone/.gitignore -------------------------------------------------------------------------------- /ep-010/Forms/manifest: -------------------------------------------------------------------------------- 1 | #appname: Forms 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.forms 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 8641c47c-e32e-48a3-bd0a-77da9ad7154f 9 | -------------------------------------------------------------------------------- /ep-011/underscore/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/android/* 4 | build/iphone/* 5 | !build/android/.gitignore 6 | !build/iphone/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-011/underscore/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-011/underscore/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-011/underscore/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/android/default.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-011/underscore/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-011/underscore/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-011/underscore/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-011/underscore/manifest: -------------------------------------------------------------------------------- 1 | #appname: underscore 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.underscore 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 0e61bce0-247b-48d9-b382-e5f9ba50ba55 9 | -------------------------------------------------------------------------------- /ep-012/datejs/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-012/datejs/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-012/datejs/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-012/datejs/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/android/default.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-012/datejs/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-012/datejs/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-012/datejs/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-012/datejs/manifest: -------------------------------------------------------------------------------- 1 | #appname: datejs 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.datejs 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 3b061228-f131-4c8c-b705-4daf9e75b529 9 | -------------------------------------------------------------------------------- /ep-013/notify/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-013/notify/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-013/notify/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-013/notify/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-013/notify/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-013/notify/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-013/notify/Resources/android/default.png -------------------------------------------------------------------------------- /ep-013/notify/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-013/notify/manifest: -------------------------------------------------------------------------------- 1 | #appname: notify 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.notify 6 | #desc: undefined 7 | #type: mobile 8 | #guid: 1798e6de-24b3-47f9-ac17-07437ae8315e 9 | -------------------------------------------------------------------------------- /ep-014/Twisti/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | *.zip 5 | .apt_generated 6 | -------------------------------------------------------------------------------- /ep-014/Twisti/.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Sep 02 15:18:34 CDT 2010 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.apt.aptEnabled=true 4 | org.eclipse.jdt.apt.genSrcDir=.apt_generated 5 | org.eclipse.jdt.apt.reconcileEnabled=true 6 | 7 | org.eclipse.jdt.apt.processorOptions/kroll.jsonFile=twisti.json 8 | -------------------------------------------------------------------------------- /ep-014/Twisti/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Sep 02 15:18:34 CDT 2010 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.processAnnotations=enabled 4 | -------------------------------------------------------------------------------- /ep-014/Twisti/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: place your license here and we'll include it in the module distribution 2 | -------------------------------------------------------------------------------- /ep-014/Twisti/assets/README: -------------------------------------------------------------------------------- 1 | Place your assets like PNG files in this directory and they will be packaged with your module. 2 | 3 | If you create a file named ti.twisti.js in this directory, it will be 4 | compiled and used as your module. This allows you to run pure Javascript 5 | modules that are pre-compiled. 6 | 7 | -------------------------------------------------------------------------------- /ep-014/Twisti/build.properties: -------------------------------------------------------------------------------- 1 | titanium.platform=/Users/tlukasavage/Library/Application Support/Titanium/mobilesdk/osx/1.7.5/android 2 | android.platform=/Users/tlukasavage/Development/android-sdk-mac_x86/platforms/android-7 3 | google.apis=/Users/tlukasavage/Development/android-sdk-mac_x86/add-ons/addon_google_apis_google_inc_7 -------------------------------------------------------------------------------- /ep-014/Twisti/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Ant build script for Titanium Android module Twisti 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ep-014/Twisti/dist/Twisti.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-014/Twisti/dist/Twisti.jar -------------------------------------------------------------------------------- /ep-014/Twisti/hooks/README: -------------------------------------------------------------------------------- 1 | These files are not yet supported as of 1.4.0 but will be in a near future release. 2 | -------------------------------------------------------------------------------- /ep-014/Twisti/hooks/install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # 3 | # This is the module install hook that will be 4 | # called when your module is first installed 5 | # 6 | import os, sys 7 | 8 | def main(args,argc): 9 | 10 | # TODO: write your install hook here (optional) 11 | 12 | # exit 13 | sys.exit(0) 14 | 15 | 16 | 17 | if __name__ == '__main__': 18 | main(sys.argv,len(sys.argv)) 19 | 20 | -------------------------------------------------------------------------------- /ep-014/Twisti/hooks/uninstall.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # 3 | # This is the module uninstall hook that will be 4 | # called when your module is uninstalled 5 | # 6 | import os, sys 7 | 8 | def main(args,argc): 9 | 10 | # TODO: write your uninstall hook here (optional) 11 | 12 | # exit 13 | sys.exit(0) 14 | 15 | 16 | if __name__ == '__main__': 17 | main(sys.argv,len(sys.argv)) 18 | 19 | -------------------------------------------------------------------------------- /ep-014/twisti-ep014/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-014/twisti-ep014/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-014/twisti-ep014/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-014/twisti-ep014/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-014/twisti-ep014/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-014/twisti-ep014/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-014/twisti-ep014/Resources/android/default.png -------------------------------------------------------------------------------- /ep-014/twisti-ep014/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-014/twisti-ep014/manifest: -------------------------------------------------------------------------------- 1 | #appname: twisti-ep014 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.twisti.ep014 6 | #desc: undefined 7 | #type: mobile 8 | #guid: 63c69221-fda6-41fd-97da-24ce9bd8ca1f 9 | -------------------------------------------------------------------------------- /ep-014/twisti-ep014/modules/android/ti.twisti/0.1/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: place your license here and we'll include it in the module distribution 2 | -------------------------------------------------------------------------------- /ep-014/twisti-ep014/modules/android/ti.twisti/0.1/Twisti.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-014/twisti-ep014/modules/android/ti.twisti/0.1/Twisti.jar -------------------------------------------------------------------------------- /ep-015/twisti-ep015/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-015/twisti-ep015/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-015/twisti-ep015/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/android/default.png -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/android/web/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/android/web/back.jpg -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/android/web/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/android/web/front.jpg -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/web/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/web/back.jpg -------------------------------------------------------------------------------- /ep-015/twisti-ep015/Resources/web/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/Resources/web/front.jpg -------------------------------------------------------------------------------- /ep-015/twisti-ep015/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-015/twisti-ep015/manifest: -------------------------------------------------------------------------------- 1 | #appname: twisti-ep015 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.twisti.ep015 6 | #desc: undefined 7 | #type: mobile 8 | #guid: a1ae5bec-bf70-4a3c-be13-039d455c058f 9 | -------------------------------------------------------------------------------- /ep-015/twisti-ep015/modules/android/ti.twisti/0.1/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: place your license here and we'll include it in the module distribution 2 | -------------------------------------------------------------------------------- /ep-015/twisti-ep015/modules/android/ti.twisti/0.1/Twisti.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-015/twisti-ep015/modules/android/ti.twisti/0.1/Twisti.jar -------------------------------------------------------------------------------- /ep-016/twisti-ep016/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-016/twisti-ep016/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-016/twisti-ep016/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/android/default.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/android/web/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/android/web/back.jpg -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/android/web/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/android/web/front.jpg -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/web/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/web/back.jpg -------------------------------------------------------------------------------- /ep-016/twisti-ep016/Resources/web/front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/Resources/web/front.jpg -------------------------------------------------------------------------------- /ep-016/twisti-ep016/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-016/twisti-ep016/manifest: -------------------------------------------------------------------------------- 1 | #appname: twisti-ep016 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.twisti.ep016 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 8c25b80f-8ca9-4d4a-871f-3005dd1b454e 9 | -------------------------------------------------------------------------------- /ep-016/twisti-ep016/modules/android/ti.twisti/0.1/LICENSE: -------------------------------------------------------------------------------- 1 | TODO: place your license here and we'll include it in the module distribution 2 | -------------------------------------------------------------------------------- /ep-016/twisti-ep016/modules/android/ti.twisti/0.1/Twisti.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-016/twisti-ep016/modules/android/ti.twisti/0.1/Twisti.jar -------------------------------------------------------------------------------- /ep-017/speed_v8/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | .DS_Store 3 | build/iphone/* 4 | !build/iphone/.gitignore 5 | build/android/* 6 | !build/android/.gitignore 7 | .settings 8 | build.log 9 | -------------------------------------------------------------------------------- /ep-017/speed_v8/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-017/speed_v8/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/android/appicon.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/android/default.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/app.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | var appWindow = new require('ui/ApplicationWindow').ApplicationWindow(); 3 | appWindow.open(); 4 | })(); 5 | 6 | -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/images/image0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/images/image0.jpg -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/images/image1.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/iphone/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/iphone/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/iphone/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/iphone/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-017/speed_v8/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-017/speed_v8/Resources/ui/TestView.js: -------------------------------------------------------------------------------- 1 | exports.TestView = function() { 2 | var self = Ti.UI.createImageView({ 3 | image: '/images/image1.png', 4 | height: '100%', 5 | width: '100%' 6 | }); 7 | return self; 8 | }; -------------------------------------------------------------------------------- /ep-017/speed_v8/build/android/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | lib 3 | bin 4 | res 5 | gen 6 | AndroidManifest.xml 7 | -------------------------------------------------------------------------------- /ep-017/speed_v8/manifest: -------------------------------------------------------------------------------- 1 | #appname: speed_v8 2 | #publisher: tlukasavage 3 | #url: http://appcelerator.com 4 | #image: appicon.png 5 | #appid: com.appcelerator.speed.v8 6 | #desc: undefined 7 | #type: ipad 8 | #guid: 7e239853-b950-47c5-b258-db6a2868a452 9 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Classes/ApplicationMods.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Appcelerator Titanium Mobile 3 | * This is generated code. Do not modify. Your changes will be lost. 4 | */ 5 | #import 6 | 7 | @interface ApplicationMods : NSObject { 8 | 9 | } 10 | + (NSArray*) compiledMods; 11 | @end 12 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Classes/ApplicationMods.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Appcelerator Titanium Mobile 3 | * This is generated code. Do not modify. Your changes will be lost. 4 | */ 5 | #import "ApplicationMods.h" 6 | 7 | 8 | @implementation ApplicationMods 9 | 10 | + (NSArray*) compiledMods 11 | { 12 | return nil; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Classes/ApplicationRouting.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Appcelerator Titanium Mobile 3 | * This is generated code. Do not modify. Your changes will be lost. 4 | */ 5 | #import 6 | 7 | @interface ApplicationRouting : NSObject { 8 | } 9 | + (NSData*) resolveAppAsset:(NSString*)path; 10 | @end 11 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Classes/ApplicationRouting.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Appcelerator Titanium Mobile 3 | * This is generated code. Do not modify. Your changes will be lost. 4 | */ 5 | #import 6 | #import "ApplicationRouting.h" 7 | 8 | @implementation ApplicationRouting 9 | 10 | + (NSData*) resolveAppAsset:(NSString*)path; 11 | { 12 | return nil; 13 | } 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/.version: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Library/Application Support/Titanium/mobilesdk/osx/1.8.0.1/iphone,ecf13c26-75fd-436a-a110-d2bfa55d7163,086dba02ebf4956989e6555c3d754630,fbdc96f -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/Resources/Default-Landscape.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/Resources/Default.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/Resources/Default@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/Resources/appicon.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/Resources/debugger.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | host 6 | 7 | port 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/Default-Landscape.png: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/iphone/Default-Landscape.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/Default-Portrait.png: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/iphone/Default-Portrait.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/Default.png: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/iphone/Default.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/Default@2x.png: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/iphone/Default@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/app.js: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/app.js -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphoneos/test_longpress_pinch.app/appicon.png: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/iphone/appicon.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app.dSYM/Contents/Resources/DWARF/test_longpress_pinch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app.dSYM/Contents/Resources/DWARF/test_longpress_pinch -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default-Landscape.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default-Portrait.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Default@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/Info.plist -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/app.js: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Documents/Titanium Studio Workspace/Forging-Titanium/ep-020/test_longpress_pinch/Resources/app.js -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/appicon.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/debugger.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/debugger.plist -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginNormal.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginNormal@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginPressed.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginPressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginPressed@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookNormal.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookNormal@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookPressed.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookPressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LoginWithFacebookPressed@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutNormal.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutNormal@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutPressed.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutPressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/LogoutPressed@2x.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/close.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/fbicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/facebook/images/fbicon.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/badge.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/closeButton.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/photoDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/modules/ui/images/photoDefault.png -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/stylesheet.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/stylesheet.plist -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/test_longpress_pinch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/Debug-iphonesimulator/test_longpress_pinch.app/test_longpress_pinch -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AFItemView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AFItemView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AFOpenFlowView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AFOpenFlowView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/APIModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/APIModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AQRecorder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AQRecorder.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIDataCompressor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIDataCompressor.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIDownloadCache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIDownloadCache.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIFormDataRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIFormDataRequest.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIHTTPRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIHTTPRequest.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIInputStream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASIInputStream.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASINetworkQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ASINetworkQueue.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AnalyticsModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AnalyticsModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AppModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AppModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ApplicationMods.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ApplicationMods.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ApplicationRouting.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ApplicationRouting.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AsyncSocket.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AsyncSocket.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AsyncUdpSocket.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AsyncUdpSocket.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamer.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamerBC.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamerBC.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamerCUR.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/AudioStreamerCUR.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Base64Transcoder.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Base64Transcoder.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Bridge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Bridge.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CADebugMacros.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CADebugMacros.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CAXException.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CAXException.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CodecModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/CodecModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ContactsModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ContactsModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/DatabaseModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/DatabaseModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBDialog.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBDialog.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBLoginButton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBLoginButton.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBLoginDialog.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBLoginDialog.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBRequest.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FBRequest.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Facebook.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Facebook.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FacebookModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FacebookModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FilesystemModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/FilesystemModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GDataXMLNode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GDataXMLNode.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GeolocationModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GeolocationModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GestureModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/GestureModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ImageLoader.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ImageLoader.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollBridge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollBridge.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollCallback.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollCallback.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollContext.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollContext.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollCoverage.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/tlukasavage/Documents/Titanium\ Studio\ Workspace/Forging-Titanium/ep-020/test_longpress_pinch/build/iphone/Classes/KrollCoverage.m 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollCoverage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollCoverage.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollMethod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollMethod.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollObject.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollObject.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollTimer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/KrollTimer.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherButton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherButton.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherItem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherItem.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LauncherView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LayoutConstraint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LayoutConstraint.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ListenerEntry.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/ListenerEntry.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LocaleModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/LocaleModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MGSplitView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MGSplitView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MapModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MapModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MediaModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/MediaModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Mimetypes.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Mimetypes.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSData+Additions.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSData+Additions.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSObject+SBJSON.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSObject+SBJSON.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSString+SBJSON.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NSString+SBJSON.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NetworkModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/NetworkModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/OperationQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/OperationQueue.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/PLSqliteDatabase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/PLSqliteDatabase.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/PlatformModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/PlatformModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Reachability.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Reachability.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonBase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonBase.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonParser.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonParser.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonWriter.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SBJsonWriter.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SCListener.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/SCListener.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/StreamModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/StreamModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Ti2DMatrix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Ti2DMatrix.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAction.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAction.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAnimation.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAnimation.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiApp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiApp.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAppiOSProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiAppiOSProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBase.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBase.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBlob.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBlob.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBuffer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiBuffer.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiButtonUtil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiButtonUtil.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiColor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiColor.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiComplexValue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiComplexValue.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiContactsGroup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiContactsGroup.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiContactsPerson.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiContactsPerson.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMAttrProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMAttrProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMEntityProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMEntityProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMNodeProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMNodeProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMPIProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMPIProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMValidator.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDOMValidator.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDataStream.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDataStream.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDatabaseProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDatabaseProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDimension.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiDimension.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiFile.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiFile.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiGradient.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiGradient.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiHost.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiHost.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiLayoutQueue.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiLayoutQueue.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiLocale.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiLocale.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMapView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMapView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMapViewProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMapViewProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMediaItem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiMediaItem.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiPoint.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiPoint.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiPublicAPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiPublicAPI.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiRange.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiRange.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiRect.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiRect.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiStreamProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiStreamProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiStylesheet.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiStylesheet.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiThreading.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiThreading.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiToolbar.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButton.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButtonBar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButtonBar.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButtonProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIButtonProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUICanvasView.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/tlukasavage/Documents/Titanium\ Studio\ Workspace/Forging-Titanium/ep-020/test_longpress_pinch/build/iphone/Classes/TiUICanvasView.m 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUICanvasView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUICanvasView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUICanvasViewProxy.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/tlukasavage/Documents/Titanium\ Studio\ Workspace/Forging-Titanium/ep-020/test_longpress_pinch/build/iphone/Classes/TiUICanvasViewProxy.m 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIImageView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIImageView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUILabel.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUILabel.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUILabelProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUILabelProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIMaskedImage.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIMaskedImage.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUINavBarButton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUINavBarButton.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIPicker.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIPicker.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIPickerProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIPickerProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIProgressBar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIProgressBar.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIScrollView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIScrollView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISearchBar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISearchBar.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISlider.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISlider.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISliderProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISliderProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISwitch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISwitch.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISwitchProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUISwitchProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITabGroup.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITabGroup.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITabProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITabProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITableView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITableView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextArea.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextArea.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextField.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextField.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextWidget.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUITextWidget.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIViewProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIViewProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWebView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWebView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWebViewProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWebViewProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWindow.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWindow.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWindowProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIWindowProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOS3DMatrix.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOS3DMatrix.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSAdView.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSAdView.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSToolbar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiOSToolbar.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPadPopover.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPadPopover.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPadProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPadProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPhoneProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUIiPhoneProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUtils.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiUtils.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiViewController.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiViewProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiViewProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiWindowProxy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TiWindowProxy.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TopTiModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/TopTiModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImage+Alpha.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImage+Alpha.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImage+Resize.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImage+Resize.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImageExtras.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIImageExtras.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UIModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UtilsModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/UtilsModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/WebFont.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/WebFont.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Webcolor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/Webcolor.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/XHRBridge.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/XHRBridge.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/XMLModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/XMLModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/YahooModule.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/YahooModule.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/main.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/tlukasavage/Documents/Titanium\ Studio\ Workspace/Forging-Titanium/ep-020/test_longpress_pinch/build/iphone/main.m 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Objects-normal/i386/main.o -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Script-DABB369F12E8CB280026A6EA.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | "/Users/tlukasavage/Library/Application Support/Titanium/mobilesdk/osx/1.8.0.1/iphone/builder.py" xcode 3 | exit $? 4 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/Script-DABB37B812E8CB280026A6EA.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo 'post-compile' 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/test_longpress_pinch-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/test_longpress_pinch.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/build/test_longpress_pinch.build/Debug-iphonesimulator/test_longpress_pinch-universal.build/test_longpress_pinch.hmap -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/lib/libTiCore.a: -------------------------------------------------------------------------------- 1 | /Users/tlukasavage/Library/Application Support/Titanium/mobilesdk/osx/1.8.0.1/iphone/libTiCore.a -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/lib/libti_ios_debugger.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/lib/libti_ios_debugger.a -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/lib/libtiverify.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_longpress_pinch/build/iphone/lib/libtiverify.a -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/module.xcconfig: -------------------------------------------------------------------------------- 1 | // this is a generated file - DO NOT EDIT 2 | 3 | -------------------------------------------------------------------------------- /ep-020/test_longpress_pinch/build/iphone/project.xcconfig: -------------------------------------------------------------------------------- 1 | TI_VERSION=1.8.0.1 2 | TI_SDK_DIR=/Users/tlukasavage/Library/Application Support/Titanium/mobilesdk/osx/$(TI_VERSION)/iphone 3 | TI_APPID=test.longpress.pinch 4 | OTHER_LDFLAGS[sdk=iphoneos*]=$(inherited) -weak_framework iAd 5 | OTHER_LDFLAGS[sdk=iphonesimulator*]=$(inherited) -weak_framework iAd 6 | #include "module" 7 | -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/app-unsigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/app-unsigned.apk -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/app.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/app.ap_ -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/app.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/app.apk -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/assets/Resources/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/assets/Resources/appicon.png -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/assets/Resources/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/assets/Resources/default.png -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/assets/Resources/movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/assets/Resources/movie.mp4 -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/assets/index.json: -------------------------------------------------------------------------------- 1 | {"/app.json": 1, "Resources/movie.mp4": 1, "Resources/default.png": 1, "/tiapp.xml": 1, "Resources/app.js": 1, "Resources/appicon.png": 1} -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/build_info.json: -------------------------------------------------------------------------------- 1 | {"include_all_modules": false} -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes.dex -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/ApplicationStylesheet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/ApplicationStylesheet.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$attr.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$drawable.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$layout.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$string.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R$style.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/R.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerActivity.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerAppInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerAppInfo.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/bin/classes/test/videoplayer/Test_videoplayerApplication.class -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/gen/test/videoplayer/Test_videoplayerActivity.java: -------------------------------------------------------------------------------- 1 | package test.videoplayer; 2 | 3 | import org.appcelerator.titanium.TiRootActivity; 4 | 5 | public final class Test_videoplayerActivity extends TiRootActivity 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/res/drawable/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/res/drawable/appicon.png -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/Forging-Titanium/6daed5856b694fe22ec55eaeb0aae84605834b2a/ep-020/test_videoplayer/build/android/res/drawable/background.png -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Titanium UI Module 4 | 5 | -------------------------------------------------------------------------------- /ep-020/test_videoplayer/build/android/res/values/theme.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | --------------------------------------------------------------------------------