Problem with SDK integration

Hello! I am trying to integrate the SDK which include much *.aar files which Defold cannot include from folders. I don’t have maven and i want make SDK as NE. I got a recommendation to unpack these files and manually have add libs to lib, res to res and combine manifests to my NE manifest. But i can’t understant what i should do with R.txt, it’s a set of constants? Where i should add/include this file (or file content)?

I saw the script (https://github.com/britzl/pompom/blob/master/pompom.py), a script as i understand generate a java-file from R.txt and add the file into classes.jar from *.aar archive, is it right solution? How can i make a java-file from R.txt manually and next include this file into classes.jar?

What you typically do is to specify these as gradle dependencies in your native extension. Example:

This build.gradle file will be identified by the extension build server, the dependencies will be resolved, unpacked and installed as part of the build process. There is no need for you to manually do all this work with .aar files etc.

Ah, no, that is old. In fact, I’ll mark it as deprecated or archived.

Unfortunatelly i don’t have gradle repository which i could use in dependencies of build.gradle. SDK documentation says i should import libs from folder:
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])

Hmm, ok, then I guess you need to do it all manually then. May I ask which SDK it is?