[Solved] Google UMP

Hi there,
Is there any possibility to use Google UMP in defold project? I’ve been looking for some module or extension, but did not find anything. Could me please someone give the advice how I can integrate Google UMP API to my project?

I had to look this up. It is Google User Messaging:

There is as far as I know no ready to use integration with the UMP SDK. It should be possible for you to base such an integration on an existing Android extension and make the required changes.

1 Like

@britzl So from what i see, i will have to write it on my own. Am I correct I need to write separate extension module (C++ or Java) where i can set up ump dependency in build.gradle and write the code from your link, than I will be able to use my extension?

Yes, you need to create a native extension for Android which interfaces with the UMP SDK.

1 Like

@britzl Thanks for help!