Skip to content

Commit

Permalink
Merge pull request #10 from navico-mobile/master
Browse files Browse the repository at this point in the history
Scope package to prevent conflicts with other plugins that haven't bother scoping
  • Loading branch information
JuanSeBestia authored Nov 9, 2019
2 parents 318f035 + bb944c4 commit bbe6d67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reactlibrary">
package="com.reactlibrary.rnwifi">
<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" />
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
</manifest>


Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactlibrary;
package com.reactlibrary.rnwifi;

import com.facebook.react.uimanager.*;
import com.facebook.react.bridge.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.reactlibrary;
package com.reactlibrary.rnwifi;

import java.util.Arrays;
import java.util.Collections;
Expand Down

0 comments on commit bbe6d67

Please sign in to comment.