Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(android): ๐ŸŒŸ add support for React Native 0.73 #3133

Merged
merged 8 commits into from
Jun 26, 2023
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ if (isNewArchitectureEnabled()) {
}

android {
namespace = "io.sentry.react"
krystofwoldrich marked this conversation as resolved.
Show resolved Hide resolved
compileSdkVersion safeExtGet('compileSdkVersion', 31)

defaultConfig {
Expand Down
6 changes: 3 additions & 3 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="io.sentry.react">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
krystofwoldrich marked this conversation as resolved.
Show resolved Hide resolved
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application>
<meta-data android:name="io.sentry.auto-init" android:value="false" />
<meta-data android:name="io.sentry.auto-init"
android:value="false" />
krystofwoldrich marked this conversation as resolved.
Show resolved Hide resolved
</application>
</manifest>