Yes, you can use Pushy in your company's own SDK by associating it with a single Pushy dashboard app, using
Pushy.setAppId()
.Doing so overrides the default package name app identification scheme, and all of your clients' apps will become associated with the Pushy Dashboard app in your account with the specified App ID. You will pay for your clients' consumed active devices, and only your own backend will be able to send notifications to your clients' users, using the Secret API Key tied to this App ID.
Find:
Pushy.listen();
Add below:
Pushy.setAppId(String appId, Context ctx);
Please populate your Pushy App ID (Pushy Dashboard -> Click your app -> App Settings -> App ID).
Note: Make sure to call this method before Pushy.register(Context)