Unable to create ext.manifest (SOLVED)

I want to create an extension to display AppLovin ad. I read native extensions document and follow its introduction. When I create ext.manifest I don’t see manifest type in new, how can I create it in Defold? Do I have to use c++ to write extension or java to show ad on android?

You can check my https://github.com/AGulev/DefVideoAds as an example.
Yes, you have to use C++, objC(ios), Java(Android).

2 Likes

thank you @AGulev. But I can’t create manifest file

Just create a empty text file with .manifest extension from any text editor.

2 Likes

Yes, it’s a missing supported file type in editor unfortunately. As suggested, just create an empty file and name it properly.

2 Likes

Thanks, guys