├── .gitignore ├── DefaultIcon-ios.png ├── DefaultIcon.png ├── LICENSE ├── README.md ├── app ├── README ├── alloy.jmk ├── alloy.js ├── assets │ ├── android │ │ ├── appicon.png │ │ └── images │ │ │ └── photo.jpg │ ├── iphone │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x.png │ │ ├── Default-Landscape-736h@3x.png │ │ ├── Default-Portrait-736h@3x.png │ │ ├── Default@2x.png │ │ └── images │ │ │ ├── tabIcon.png │ │ │ ├── tabIcon@2x.png │ │ │ └── tabIcon@3x.png │ └── windows │ │ ├── SplashScreen.png │ │ └── SplashScreen.scale-240.png ├── config.json ├── controllers │ ├── android.js │ ├── cardview.js │ ├── console.js │ ├── index.js │ ├── ios.js │ └── permissions.js ├── lib │ ├── async.js │ └── log.js ├── styles │ ├── android.tss │ ├── app.tss │ ├── cardview.tss │ ├── console.tss │ ├── index.tss │ ├── ios.tss │ └── windows.tss └── views │ ├── android.xml │ ├── autolayout.xml │ ├── cardview.xml │ ├── console.xml │ ├── index.xml │ ├── ios.xml │ ├── permissions.xml │ └── windows.xml ├── docs ├── autolayout.gif ├── buttons.png ├── callstack.png ├── cardview.png ├── defaulticon.png ├── reveal.gif ├── safaridialog.png ├── textinput.png └── textinput_watch.png ├── platform └── android │ └── res │ ├── drawable-hdpi │ ├── appicon.png │ └── background.9.png │ ├── drawable-mdpi │ ├── appicon.png │ └── background.9.png │ ├── drawable-xhdpi │ ├── appicon.png │ └── background.9.png │ ├── drawable-xxhdpi │ ├── appicon.png │ └── background.9.png │ ├── values │ └── custom_theme.xml │ └── xml │ └── preferences.xml ├── plugins └── ti.alloy │ ├── hooks │ ├── alloy.js │ └── deepclean.js │ └── plugin.py └── tiapp.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/.gitignore -------------------------------------------------------------------------------- /DefaultIcon-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/DefaultIcon-ios.png -------------------------------------------------------------------------------- /DefaultIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/DefaultIcon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/README.md -------------------------------------------------------------------------------- /app/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/README -------------------------------------------------------------------------------- /app/alloy.jmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/alloy.jmk -------------------------------------------------------------------------------- /app/alloy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/alloy.js -------------------------------------------------------------------------------- /app/assets/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/android/appicon.png -------------------------------------------------------------------------------- /app/assets/android/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/android/images/photo.jpg -------------------------------------------------------------------------------- /app/assets/iphone/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/Default-568h@2x.png -------------------------------------------------------------------------------- /app/assets/iphone/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/Default-667h@2x.png -------------------------------------------------------------------------------- /app/assets/iphone/Default-Landscape-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/Default-Landscape-736h@3x.png -------------------------------------------------------------------------------- /app/assets/iphone/Default-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/Default-Portrait-736h@3x.png -------------------------------------------------------------------------------- /app/assets/iphone/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/Default@2x.png -------------------------------------------------------------------------------- /app/assets/iphone/images/tabIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/images/tabIcon.png -------------------------------------------------------------------------------- /app/assets/iphone/images/tabIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/images/tabIcon@2x.png -------------------------------------------------------------------------------- /app/assets/iphone/images/tabIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/iphone/images/tabIcon@3x.png -------------------------------------------------------------------------------- /app/assets/windows/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/windows/SplashScreen.png -------------------------------------------------------------------------------- /app/assets/windows/SplashScreen.scale-240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/assets/windows/SplashScreen.scale-240.png -------------------------------------------------------------------------------- /app/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/config.json -------------------------------------------------------------------------------- /app/controllers/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/android.js -------------------------------------------------------------------------------- /app/controllers/cardview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/cardview.js -------------------------------------------------------------------------------- /app/controllers/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/console.js -------------------------------------------------------------------------------- /app/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/index.js -------------------------------------------------------------------------------- /app/controllers/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/ios.js -------------------------------------------------------------------------------- /app/controllers/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/controllers/permissions.js -------------------------------------------------------------------------------- /app/lib/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/lib/async.js -------------------------------------------------------------------------------- /app/lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/lib/log.js -------------------------------------------------------------------------------- /app/styles/android.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/android.tss -------------------------------------------------------------------------------- /app/styles/app.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/app.tss -------------------------------------------------------------------------------- /app/styles/cardview.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/cardview.tss -------------------------------------------------------------------------------- /app/styles/console.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/console.tss -------------------------------------------------------------------------------- /app/styles/index.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/index.tss -------------------------------------------------------------------------------- /app/styles/ios.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/ios.tss -------------------------------------------------------------------------------- /app/styles/windows.tss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/styles/windows.tss -------------------------------------------------------------------------------- /app/views/android.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/android.xml -------------------------------------------------------------------------------- /app/views/autolayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/autolayout.xml -------------------------------------------------------------------------------- /app/views/cardview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/cardview.xml -------------------------------------------------------------------------------- /app/views/console.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/console.xml -------------------------------------------------------------------------------- /app/views/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/index.xml -------------------------------------------------------------------------------- /app/views/ios.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/ios.xml -------------------------------------------------------------------------------- /app/views/permissions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/permissions.xml -------------------------------------------------------------------------------- /app/views/windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/app/views/windows.xml -------------------------------------------------------------------------------- /docs/autolayout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/autolayout.gif -------------------------------------------------------------------------------- /docs/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/buttons.png -------------------------------------------------------------------------------- /docs/callstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/callstack.png -------------------------------------------------------------------------------- /docs/cardview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/cardview.png -------------------------------------------------------------------------------- /docs/defaulticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/defaulticon.png -------------------------------------------------------------------------------- /docs/reveal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/reveal.gif -------------------------------------------------------------------------------- /docs/safaridialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/safaridialog.png -------------------------------------------------------------------------------- /docs/textinput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/textinput.png -------------------------------------------------------------------------------- /docs/textinput_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/docs/textinput_watch.png -------------------------------------------------------------------------------- /platform/android/res/drawable-hdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-hdpi/appicon.png -------------------------------------------------------------------------------- /platform/android/res/drawable-hdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-hdpi/background.9.png -------------------------------------------------------------------------------- /platform/android/res/drawable-mdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-mdpi/appicon.png -------------------------------------------------------------------------------- /platform/android/res/drawable-mdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-mdpi/background.9.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-xhdpi/appicon.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xhdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-xhdpi/background.9.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xxhdpi/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-xxhdpi/appicon.png -------------------------------------------------------------------------------- /platform/android/res/drawable-xxhdpi/background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/drawable-xxhdpi/background.9.png -------------------------------------------------------------------------------- /platform/android/res/values/custom_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/values/custom_theme.xml -------------------------------------------------------------------------------- /platform/android/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/platform/android/res/xml/preferences.xml -------------------------------------------------------------------------------- /plugins/ti.alloy/hooks/alloy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/plugins/ti.alloy/hooks/alloy.js -------------------------------------------------------------------------------- /plugins/ti.alloy/hooks/deepclean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/plugins/ti.alloy/hooks/deepclean.js -------------------------------------------------------------------------------- /plugins/ti.alloy/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/plugins/ti.alloy/plugin.py -------------------------------------------------------------------------------- /tiapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appcelerator-developer-relations/appc-sample-ti510/HEAD/tiapp.xml --------------------------------------------------------------------------------