Java Code Examples for com.getcapacitor.PluginCall#unimplemented()

The following examples show how to use com.getcapacitor.PluginCall#unimplemented() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Browser.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void close(PluginCall call) {
  call.unimplemented();
}
 
Example 2
Source File: PushNotifications.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void getDeliveredNotifications(PluginCall call) {
  call.unimplemented();
}
 
Example 3
Source File: PushNotifications.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void removeDeliveredNotifications(PluginCall call) {
  call.unimplemented();
}
 
Example 4
Source File: Photos.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void getAlbums(PluginCall call) {
  call.unimplemented();
}
 
Example 5
Source File: Photos.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void getPhotos(PluginCall call) {
  call.unimplemented();
}
 
Example 6
Source File: Photos.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void createAlbum(PluginCall call) {
  call.unimplemented();
}
 
Example 7
Source File: Photos.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void savePhoto(PluginCall call) {
  call.unimplemented();
}
 
Example 8
Source File: Haptics.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void notification(PluginCall call) {
  call.unimplemented();
}
 
Example 9
Source File: Haptics.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void selectionStart(PluginCall call) {
  call.unimplemented();
}
 
Example 10
Source File: Haptics.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void selectionChanged(PluginCall call) {
  call.unimplemented();
}
 
Example 11
Source File: Haptics.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void selectionEnd(PluginCall call) {
  call.unimplemented();
}
 
Example 12
Source File: Keyboard.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void setAccessoryBarVisible(PluginCall call) {
  call.unimplemented();
}
 
Example 13
Source File: Keyboard.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void setStyle(PluginCall call) {
  call.unimplemented();
}
 
Example 14
Source File: Keyboard.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void setResizeMode(PluginCall call) {
  call.unimplemented();
}
 
Example 15
Source File: Keyboard.java    From OsmGo with MIT License 4 votes vote down vote up
@PluginMethod()
public void setScroll(PluginCall call) {
      call.unimplemented();
}