diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f9ba83102..fd4d098419 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ * Fix: Do not set free memory and is low memory fields when it's a NDK hard crash (#1399) * Fix: Apply user from the scope to transaction (#1424) * Fix: Pass maxBreadcrumbs config. to sentry-native (#1425) +* Bump: sentry-native to 0.4.9 (#1431) # 4.4.0-alpha.2 diff --git a/sentry-android-ndk/sentry-native b/sentry-android-ndk/sentry-native index 1c046603d9..b3f2b6ddac 160000 --- a/sentry-android-ndk/sentry-native +++ b/sentry-android-ndk/sentry-native @@ -1 +1 @@ -Subproject commit 1c046603d9c61e1790a80ac2f8fb80c255152225 +Subproject commit b3f2b6ddac886616b40cdccbb05b81af14b6adc9 diff --git a/sentry-android-ndk/src/main/jni/sentry.c b/sentry-android-ndk/src/main/jni/sentry.c index 7d0ff47554..6d7ff6ee5c 100644 --- a/sentry-android-ndk/src/main/jni/sentry.c +++ b/sentry-android-ndk/src/main/jni/sentry.c @@ -398,5 +398,5 @@ Java_io_sentry_android_ndk_NativeModuleListLoader_nativeLoadModuleList(JNIEnv *e JNIEXPORT void JNICALL Java_io_sentry_android_ndk_SentryNdk_shutdown(JNIEnv *env, jclass cls) { - sentry_shutdown(); + sentry_close(); } diff --git a/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml b/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml index d435e4d3f5..cc24d8e6e8 100644 --- a/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml +++ b/sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml @@ -21,8 +21,6 @@ android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:theme="@style/AppTheme" - android:allowNativeHeapPointerTagging="false" - android:extractNativeLibs="true" tools:ignore="GoogleAppIndexingWarning, UnusedAttribute">