cordova-hotspot-plugin icon indicating copy to clipboard operation
cordova-hotspot-plugin copied to clipboard

createHotspot and startHotspot not starting Hotspot

Open vksingh225 opened this issue 4 years ago • 0 comments

this.hotspot.createHotspot('MyHotspot', 'Open', '').then(resp => {
      console.log("Hotspot started ", resp);
      
        this.hotspot.startHotspot().then(resp => {
           console.log("StartHotspot  ", resp);
        }).catch(err => {
           console.log("StartHotspot error ", err);
        })    
    }).catch(err => {
      console.log("Hotspot error ", err);
    })

This is my code to create hotspot, the response is OK but the hotspot is not turning up. Device is Samsung Galaxy S8

vksingh225 avatar Mar 17 '20 12:03 vksingh225