Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Category: cordova

Cordova audio recorder plugin tutorial

Posted on February 8, 2021February 17, 2021 by mohamad wael

 

Plugin concepts

The plugin cordova audio recorder , can be used to record audio , on android and iOS . This plugin , provides an api , which is accessible , using the global object cordova.plugins.audioRecorder .

The api … Read More

cordova tutorial

Cordova plugin media capture a tutorial

Posted on February 3, 2021February 4, 2021 by mohamad wael

 

Plugin Concepts

The cordova media capture plugin , can be used to capture audios , images , and videos , using a smartphone .

This plugin adds the capture object , accessible globally , when the deviceready event is … Read More

cordova tutorial

Demo cordova application reverse image search

Posted on January 21, 2021February 23, 2021 by mohamad wael

 

This application uses google reverse image search , in order to try and guess what an image represents . It simply returns the text found in the topstuff element , returned by google , when submitting an image , … Read More

cordova tutorial

Cordova plugin camera a tutorial

Posted on January 13, 2021February 23, 2021 by mohamad wael

 

To capture and select images or videos , using cordova , the plugin cordova-plugin-camera can be used .

$ cordova create demo-camera com.twiserandom.mobileapps.demo.camera "Demo Camera"
# Create an application , in a folder named
# demo-camera , with an 
… Read More
cordova tutorial

Getting device information using cordova !

Posted on January 10, 2021January 12, 2021 by mohamad wael

 

The cordova device plugin , can be used to get the hardware and software information , for a mobile device .

Information that can be gotten using the device plugin

The plugin adds a global device object , which … Read More

cordova tutorial

Getting battery status using Cordova !

Posted on January 10, 2021February 23, 2021 by mohamad wael

 
There are two plugins to get battery status using Cordova, the first one is called phonegap-plugin-battery-status , and the second one is cordova-plugin-battery-status .

phonegap-plugin-battery-status

The phonegap-plugin-battery-status plugin is deprecated , but it is still working .

It can … Read More

cordova tutorial