/// /// turboencryptionOnLoad.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © 2025 Marc Rousavy @ Margelo /// package com.margelo.nitro.turboencryption import android.util.Log internal class turboencryptionOnLoad { companion object { private const val TAG = "turboencryptionOnLoad" private var didLoad = false /** * Initializes the native part of "turboencryption". * This method is idempotent and can be called more than once. */ @JvmStatic fun initializeNative() { if (didLoad) return try { Log.i(TAG, "Loading turboencryption C++ library...") System.loadLibrary("turboencryption") Log.i(TAG, "Successfully loaded turboencryption C++ library!") didLoad = true } catch (e: Error) { Log.e(TAG, "Failed to load turboencryption C++ library! Is it properly installed and linked? " + "Is the name correct? (see `CMakeLists.txt`, at `add_library(...)`)", e) throw e } } } }