You can reach to this page on

https://gsesmartiptv.com/android-developer-api

 

Send your M3U link from your application to GSE IPTV using the code below.


Source code    
Button msendm3u = ((Button) findViewById(R.id.sendm3u));
msendm3u.setOnClickListener(new View.OnClickListener() {
    public void onClick(View v) {
        final Intent i = new Intent(Intent.ACTION_VIEW);
        i.setDataAndType(Uri.parse("http://yourdomain.com/playlist.m3u"), "*/*"); ///change your M3U link
        i.setClassName("com.gsetech.smartiptv", "com.gsetech.smartiptv.M3UGroupActivity");
        MainActivity.this.startActivity(i);
    }
});