├── .classpath ├── .gitignore ├── .project ├── .settings ├── com.aptana.editor.common.prefs ├── org.eclipse.jdt.apt.core.prefs └── org.eclipse.jdt.core.prefs ├── CHANGELOG.txt ├── LICENSE ├── LICENSE.txt ├── README.md ├── assets └── README ├── dist ├── custom-android-camera.jar ├── pw.custom.androidcamera-android-0.1.zip ├── pw.custom.androidcamera-android-0.2.zip ├── pw.custom.androidcamera-android-0.3.zip ├── pw.custom.androidcamera-android-0.4.zip ├── pw.custom.androidcamera-android-0.5.zip ├── pw.custom.androidcamera-android-0.6.1.zip ├── pw.custom.androidcamera-android-0.6.2.zip ├── pw.custom.androidcamera-android-0.6.3.zip ├── pw.custom.androidcamera-android-0.6.4.zip ├── pw.custom.androidcamera-android-0.6.6.zip └── pw.custom.androidcamera-android-0.6.zip ├── documentation └── index.md ├── example └── app.js ├── hooks ├── README ├── add.py ├── install.py ├── remove.py └── uninstall.py ├── libs ├── armeabi-v7a │ └── libpw.custom.androidcamera.so ├── armeabi │ └── libpw.custom.androidcamera.so └── x86 │ └── libpw.custom.androidcamera.so ├── manifest ├── platform └── README ├── src └── pw │ └── custom │ └── androidcamera │ ├── CameraViewProxy.java │ └── CustomAndroidCameraModule.java └── timodule.xml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | bin 3 | build 4 | .apt_generated 5 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/.project -------------------------------------------------------------------------------- /.settings/com.aptana.editor.common.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/.settings/com.aptana.editor.common.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.apt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/.settings/org.eclipse.jdt.apt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/README.md -------------------------------------------------------------------------------- /assets/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/assets/README -------------------------------------------------------------------------------- /dist/custom-android-camera.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/custom-android-camera.jar -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.1.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.2.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.3.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.4.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.5.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.1.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.2.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.3.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.4.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.6.zip -------------------------------------------------------------------------------- /dist/pw.custom.androidcamera-android-0.6.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/dist/pw.custom.androidcamera-android-0.6.zip -------------------------------------------------------------------------------- /documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/documentation/index.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/example/app.js -------------------------------------------------------------------------------- /hooks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/hooks/README -------------------------------------------------------------------------------- /hooks/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/hooks/add.py -------------------------------------------------------------------------------- /hooks/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/hooks/install.py -------------------------------------------------------------------------------- /hooks/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/hooks/remove.py -------------------------------------------------------------------------------- /hooks/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/hooks/uninstall.py -------------------------------------------------------------------------------- /libs/armeabi-v7a/libpw.custom.androidcamera.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/libs/armeabi-v7a/libpw.custom.androidcamera.so -------------------------------------------------------------------------------- /libs/armeabi/libpw.custom.androidcamera.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/libs/armeabi/libpw.custom.androidcamera.so -------------------------------------------------------------------------------- /libs/x86/libpw.custom.androidcamera.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/libs/x86/libpw.custom.androidcamera.so -------------------------------------------------------------------------------- /manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/manifest -------------------------------------------------------------------------------- /platform/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/platform/README -------------------------------------------------------------------------------- /src/pw/custom/androidcamera/CameraViewProxy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/src/pw/custom/androidcamera/CameraViewProxy.java -------------------------------------------------------------------------------- /src/pw/custom/androidcamera/CustomAndroidCameraModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/src/pw/custom/androidcamera/CustomAndroidCameraModule.java -------------------------------------------------------------------------------- /timodule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownemint/Ti-Android-CameraView/HEAD/timodule.xml --------------------------------------------------------------------------------