Skip to content

Commit

Permalink
feat(android): 🌟 add support for React Native 0.73
Browse files Browse the repository at this point in the history
  • Loading branch information
peterlazar1993 committed Jun 19, 2023
1 parent b26bf00 commit 2a8bce7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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"
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">
<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" />
</application>
</manifest>

0 comments on commit 2a8bce7

Please sign in to comment.