0.2.7 • Published 4 years ago

cordova-plugin-bubbles v0.2.7

Weekly downloads
1
License
ISC
Repository
-
Last release
4 years ago

cordova-plugin-bubbles

Cordova plugin for bubbles notifications work with Sdk => 21

Image of bubbles

how to use

Import............

declare const bubblesPlugin:any;

@Component({
    selector: '.......',
    templateUrl: '.......',
    styleUrls: ['.......']
})
export class ....... 

integration

let bubblesOptions = {
	badge: 0, // badge number 
	widget_label: '...',
	widget_details: '...',
	type: 'bubble/incomingCall'
};		

// CREATE THE BUBBLES
bubblesPlugin.createFloatingBubbles(bubblesOptions,(data) => {
			console.log("FloatingBubbles : ", data);
		}, (err) => {  
			console.log("Error : ", err);
});


// REMOVE THE BUBBLES
bubblesPlugin.removeFloatingBubbles( (data) => {

			console.log("FloatingBubbles : ", data);
		}, (err) => {  
			console.log("Error : ", err);
});

##Rq

MinSdk :21
Android only
you must add mipmap/ic_launcher_round in your project

how to build for ionic

ionic cordova plugin add cordova-plugin-bubbles

ionic cordova build android
0.2.7

4 years ago

0.2.6

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.9

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.1.6

4 years ago

0.1.4

4 years ago

0.1.5

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago