Android, manifest variables using C++ encryption (with NDK)
I've just recently implemented NDK, and everything seems to work fine.
Now.. I'm not sure on how to use the c++ method in the manifest, currenctly I'm able to use it via code by using a object that I created:
object ApiKeyRetriever {
    init{
        System.loadLibrary("api-keys")
    }
    external fun getGoogleKey():String
    external fun getFacebookToken():String
    external fun getDatabase():String
    external fun getFacebookProtocolScheme():String
}
I need it in the manifest for the...