ktaglib: fix package namespace

This commit is contained in:
Alexander Capehart 2024-12-12 12:13:52 -07:00
parent a85acceed6
commit abb547aba3
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
3 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ plugins {
}
android {
namespace 'com.example.ktaglib'
namespace 'org.oxycblt.ktaglib'
compileSdk 34
ndkVersion "26.3.11579264"

View file

@ -4,7 +4,7 @@
#include "taglib/tag.h"
extern "C" JNIEXPORT jstring JNICALL
Java_com_example_ktaglib_NativeLib_stringFromJNI(
Java_org_oxycblt_ktaglib_NativeLib_stringFromJNI(
JNIEnv* env,
jobject /* this */) {
std::string hello = "Hello from C++";