├── .gitignore ├── README.md ├── haxelib.json └── js ├── Cordova.hx └── cordova └── plugin ├── AdMob.hx ├── BluetoothLE.hx ├── BluetoothSerial.hx ├── Calendar.hx ├── Camera.hx ├── Clipboard.hx ├── DatePicker.hx ├── Device.hx ├── EmailComposer.hx ├── FacebookConnect.hx ├── FileTransfer.hx ├── Globalization.hx ├── InAppBrowser.hx ├── IonicKeyboard.hx ├── ListPicker.hx ├── LocalNotification.hx ├── Media.hx ├── NetworkInformation.hx ├── Opener.hx ├── PushNotification.hx ├── Pushwoosh.hx ├── ScreenOrientation.hx ├── SocialSharing.hx ├── Splashscreen.hx ├── StatusBar.hx ├── StreamingPlayer.hx ├── Toast.hx ├── YouTubeVideoPlayer.hx └── fs ├── DirectoryEntry.hx ├── DirectoryEntrySync.hx ├── DirectoryReader.hx ├── DirectoryReaderSync.hx ├── EntriesCallback.hx ├── Entry.hx ├── EntryCallback.hx ├── EntrySync.hx ├── ErrorCallback.hx ├── FileCallback.hx ├── FileEntry.hx ├── FileEntrySync.hx ├── FileError.hx ├── FileException.hx ├── FileReader.hx ├── FileSystem.hx ├── FileSystemCallback.hx ├── FileSystemSync.hx ├── FileWriter.hx ├── FileWriterCallback.hx ├── FileWriterSync.hx ├── Metadata.hx ├── MetadataCallback.hx └── VoidCallback.hx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/README.md -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/haxelib.json -------------------------------------------------------------------------------- /js/Cordova.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/Cordova.hx -------------------------------------------------------------------------------- /js/cordova/plugin/AdMob.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/AdMob.hx -------------------------------------------------------------------------------- /js/cordova/plugin/BluetoothLE.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/BluetoothLE.hx -------------------------------------------------------------------------------- /js/cordova/plugin/BluetoothSerial.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/BluetoothSerial.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Calendar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Calendar.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Camera.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Camera.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Clipboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Clipboard.hx -------------------------------------------------------------------------------- /js/cordova/plugin/DatePicker.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/DatePicker.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Device.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Device.hx -------------------------------------------------------------------------------- /js/cordova/plugin/EmailComposer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/EmailComposer.hx -------------------------------------------------------------------------------- /js/cordova/plugin/FacebookConnect.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/FacebookConnect.hx -------------------------------------------------------------------------------- /js/cordova/plugin/FileTransfer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/FileTransfer.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Globalization.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Globalization.hx -------------------------------------------------------------------------------- /js/cordova/plugin/InAppBrowser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/InAppBrowser.hx -------------------------------------------------------------------------------- /js/cordova/plugin/IonicKeyboard.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/IonicKeyboard.hx -------------------------------------------------------------------------------- /js/cordova/plugin/ListPicker.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/ListPicker.hx -------------------------------------------------------------------------------- /js/cordova/plugin/LocalNotification.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/LocalNotification.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Media.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Media.hx -------------------------------------------------------------------------------- /js/cordova/plugin/NetworkInformation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/NetworkInformation.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Opener.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Opener.hx -------------------------------------------------------------------------------- /js/cordova/plugin/PushNotification.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/PushNotification.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Pushwoosh.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Pushwoosh.hx -------------------------------------------------------------------------------- /js/cordova/plugin/ScreenOrientation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/ScreenOrientation.hx -------------------------------------------------------------------------------- /js/cordova/plugin/SocialSharing.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/SocialSharing.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Splashscreen.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Splashscreen.hx -------------------------------------------------------------------------------- /js/cordova/plugin/StatusBar.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/StatusBar.hx -------------------------------------------------------------------------------- /js/cordova/plugin/StreamingPlayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/StreamingPlayer.hx -------------------------------------------------------------------------------- /js/cordova/plugin/Toast.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/Toast.hx -------------------------------------------------------------------------------- /js/cordova/plugin/YouTubeVideoPlayer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/YouTubeVideoPlayer.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/DirectoryEntry.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/DirectoryEntry.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/DirectoryEntrySync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/DirectoryEntrySync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/DirectoryReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/DirectoryReader.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/DirectoryReaderSync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/DirectoryReaderSync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/EntriesCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/EntriesCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/Entry.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/Entry.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/EntryCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/EntryCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/EntrySync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/EntrySync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/ErrorCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/ErrorCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileEntry.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileEntry.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileEntrySync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileEntrySync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileError.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileError.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileException.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileException.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileReader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileReader.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileSystem.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileSystemCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileSystemCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileSystemSync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileSystemSync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileWriter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileWriter.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileWriterCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileWriterCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/FileWriterSync.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/FileWriterSync.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/Metadata.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/Metadata.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/MetadataCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/MetadataCallback.hx -------------------------------------------------------------------------------- /js/cordova/plugin/fs/VoidCallback.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tokomlabs/haxe-cordova/HEAD/js/cordova/plugin/fs/VoidCallback.hx --------------------------------------------------------------------------------