Global

Members

APP Availability Bridge

Dore APP Availability check
Source:
Example
DoreClient.getAsyncStorage('')
DoreClient.saveAsyncStorage('')

AsyncStorage Bridge

Dore AsyncStorage to save data
Source:
Example
DoreClient.getAsyncStorage('')
DoreClient.saveAsyncStorage('')

Back Bridge

Dore BackBridge to handle Android Backbutton event
Source:
Example
$ionicPlatform.on('ANDROID_BACK', function (event) {
   DoreClient.showToast('ANDROID_BACK');
});

Badge Bridge

Dore BadgeBridge to handle Android Badge
Source:
Example
DoreClient.getBadge()
DoreClient.setBadge(19)
DoreClient.addBadge(1)
DoreClient.minusBadge(1)

Permissions Bridge

Dore BackBridge to check & request Permissions
Source:
Example
$ionicPlatform.on('ANDROID_BACK', function (event) {
   DoreClient.showToast('ANDROID_BACK');
});

Screenshot Bridge

Dore Screenshot Bridge to capture Screenshot
Source:
Example
DoreClient.captureScreen().then(uri){

}

Shake Event Listener

Dore Share Event Bridge
Source:
Example
$ionicPlatform.on('SHAKE', function (response) {
  $scope.shake = response.detail.data;
  $scope.$apply();
});
DoreClient.addShakeListener();

Storage Bridge

Dore Storage to save data
Source:
Example
DoreClient.getStorage('')
DoreClient.saveStorage('')