How to use this SDK in project?

I do localization work with game, so I need use local 's ADSDK. But the .aar was not same like example(admob), I don’t know how to put in project and init sdk.

https://github.com/lemonjam-jj/TouTiaoSDK

step1:


step2:
2
step3:

How to put .arr in project?
How to override onCreate() ?

You need to unpack the .aar file (it’s a zip archive) and take the .jar file and any Android resource files and put these in your extension. Once you have these in the right location you need to call some Java code in your extension that does the call to TTAdSdk.init()

Some additional help:

Native extension manual - Writing native extensions for Defold
Android extension example - GitHub - defold/extension-android: Example of a native extension for Android

Thank you. I will try it.