Read build arguments from NDK code

倾然丶 夕夏残阳落幕 提交于 2019-12-20 06:51:09

问题


I have an NDK file that inject my api key into my app, the code works correctly:

#include <jni.h>

JNIEXPORT jstring JNICALL
Java_yt_javi_nftweets_ui_main_MainActivity_getTwitterKey(JNIEnv *env, jobject instance) {

    return (*env)->  NewStringUTF(env, "my_twitter_key");
}

I would like to change my_twitter_key by an custom build argument

externalNativeBuild {
  ndkBuild {
    arguments "-DTWITTER_API_KEY=my_twitter_key"
  }
}

And read that argument inside the method Java_yt_javi_nftweets_ui_main_MainActivity_getTwitterKey


回答1:


You could add a define to your cFlags and stringify it in your C code:

android {
    defaultConfig {
        externalNativeBuild {
            ndkBuild {
                cFlags "-DTWITTER_API_KEY=my_twitter_key"
            }
        }
    }
}

#define xstr(s) str(s)
#define str(s) #s

...

return (*env)->NewStringUTF(env, xstr(TWITTER_API_KEY));


来源:https://stackoverflow.com/questions/46771588/read-build-arguments-from-ndk-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!