Skip to content

Commit

Permalink
feat(android): 🌟 add support for React Native 0.73 (#312)
Browse files Browse the repository at this point in the history
by removing the package from AndroidManifest and adding as build.gradle android namespace
  • Loading branch information
eliaslecomte authored Oct 27, 2023
1 parent e4ff7f7 commit 451b92c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ buildscript {
apply plugin: 'com.android.library'

android {
namespace = "com.reactlibrary.rnwifi"

compileSdkVersion safeExtGet(compileSdkVersion, 31)

compileOptions {
Expand Down
3 changes: 1 addition & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reactlibrary.rnwifi">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Expand Down

0 comments on commit 451b92c

Please sign in to comment.