Created
June 16, 2023 12:01
-
-
Save qamarelsafadi/219e94ca524b460099a1ff3249b5ee38 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Created by Qamar Safadi on 16/06/2023. | |
// | |
#include <jni.h> | |
#include <string> | |
extern "C" | |
jstring | |
Java_com_qamar_myapplication_MainActivity_secureText( | |
JNIEnv* env, | |
jobject /* this */) { | |
std::string baseURL = "https://test/"; | |
return env->NewStringUTF(baseURL.c_str()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment