How to create specific channel programatically for push notification in android?

How to create specific channel programatically for push notification in android?

For example :
I want to create channel named “agha” .

When you register device for a channel, it will be created automatically.

u mean this call this method evry time to create channel ? Backendless.Messaging.registerDevice()

Is there any way other than this ?
one user will only create channel… it will not subscribe itself… only other can subscribe…
like backendless allows us to add multiple channel using console but i want to add channels using some code… plz help

Channels are created when you perform any of the following API operations:

    Register device with a channel Create a pub/sub subscriber with a channel Publish a message to a channel
Based on that list, you should be able to come up with a strategy for creating channels in your app.

Regards,
Mark

Thanks Mark…