|
||
applican.finish() | applican.application.finish() | ver.1.0 API 利用可 / Android のみ |
applican.connection.type | applican.connection.getCurrentConnectionType() | |
applican.showLogConsole() | applican.console.show() | ver.1.0 API 利用可 |
console.log() |
applican.console.verbose() applican.console.debug() applican.console.info() applican.console.warn() applican.console.error() |
ログレベルごとに出力します。 |
applican.openDatabase() | applican.database.open() | ver.1.0 API 利用可 |
applican.requestFileSystem() | applican.filesystem.requestFileSystem() | ver.1.0 API 利用可 |
applican.getApplicationFilesRoot() | applican.filesystem.getApplicationFilesRoot() | ver.1.0 API 利用可 |
applican.getApplicationExternalFilesRoot() | applican.filesystem.getApplicationExternalFilesRoot() | ver.1.0 API 利用可 |
applican.getApplicationCacheRoot() | applican.filesystem.getApplicationCacheRoot() | ver.1.0 API 利用可 |
applican.getApplicationExternalCacheRoot() | applican.filesystem.getApplicationExternalCacheRoot() | ver.1.0 API 利用可 |
var entry = new DirectoryEntry() | var entry = applican.filesystem.createDirectoryEntry() | |
var reader =DirectoryReader() | var reader =applican.filesystem.createDirectoryReader() | |
var entry = FileEntry() | var entry = applican.filesystem.createFileEntry() | |
var reader = FileReader() | var reader = applican.filesystem.createFileReader() | |
var writer = FileWriter() | var writer = applican.filesystem.createFileWriter() | |
var transfer = FileTransfer() | var transfer = applican.filesystem.createFileTransfer() | |
applican.launcher.webview() | SafariViewController 利用可 (iOS) | |
var player= new Media() | applican.media.createMediaPlayer(src, Success, Error); Success = function(result) {player = result;} |
newで生成せず、createMediaPlayeのrサクセスコールバックで取得します。 |
applican.media.playBackground() | var options = {background:true}; player.play(options); |
バックグラウンドでの再生はplay()の引数で指定します。 |
var recorder= new Media() | applican.media.createMediaRecorder(src, Success,Error); Success = function(result) {recorder = result;} |
newで生成せず、createMediaRecorderのサクセスコールバックで取得します。 |
applican.purchase.toggleSandbox() | var options = { sandbox: true }; applican.purchase.makePurchase(Id, Type,Success, Error,options); applican.purchase.restorePurchase(Type, Success, Error,options); |
makePurchase()とrestorePurchase()の引数で指定します。 |
applican.purchase.setSharedPassword() | 廃止 | APIでの設定は廃止。ビルド設定にて指定してください。 |
applican.addLaunchWebviewCloseEventListener() | applican.webview.addLaunchWebviewCloseEventListener() | ver.1.0 API 利用可 |
applican.wifi.getCurrentBSSID() | 新設 | |
applican.wifi.getCurrentIPv4Address() | 新設 | |
applican.wifi.getCurrentIPv6Address() | 新設 |