Skip to content

Instantly share code, notes, and snippets.

@turkergoksu
Last active April 16, 2020 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save turkergoksu/07bef9c86a782150d8dcf9c7913d7de8 to your computer and use it in GitHub Desktop.
Save turkergoksu/07bef9c86a782150d8dcf9c7913d7de8 to your computer and use it in GitHub Desktop.
// ApiKeyLibrary.kt
object ApiKeyLibrary {
init {
  System.loadLibrary("api-keys") // ex.. api-keys.cpp
  }
// Name of the function must be same as used in the native code.
external fun getMovieDbApiKeyFromJNI(): String
}
// MainActivity
// …
val apiKey = ApiKeyLibrary.getMovieDbApiKeyFromJNI()
// …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment