Skip to content

Commit 306197f

Browse files
committed
refactoring
1 parent 5c304a5 commit 306197f

File tree

10 files changed

+5
-6
lines changed

10 files changed

+5
-6
lines changed

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.github.alinz">
2+
package="com.github.alinz.reactnativewebviewbridge">
33

44
</manifest>

examples/Sample2/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ dependencies {
7575
compile fileTree(dir: "libs", include: ["*.jar"])
7676
compile "com.android.support:appcompat-v7:23.0.1"
7777
compile "com.facebook.react:react-native:0.16.+"
78-
compile "com.github.alinz.reactnativewebviewbridge"
79-
//compile project(':react-native-webview-bridge')
78+
//compile "com.github.alinz.reactnativewebviewbridge"
79+
compile project(':react-native-webview-bridge')
8080
}

examples/Sample2/android/app/src/main/java/com/sample2/MainActivity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import com.facebook.react.shell.MainReactPackage;
1212
import com.facebook.soloader.SoLoader;
1313

14-
import com.github.alinz.reactnativewebviewbridge;
14+
import com.github.alinz.reactnativewebviewbridge.WebViewBridgePackage;
1515

1616
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
1717

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
rootProject.name = 'Sample2'
22

3-
include ':app'
4-
include ':react-native-webview-bridge'
3+
include ':app', ':react-native-webview-bridge'
54
project(':react-native-webview-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview-bridge/android')

0 commit comments

Comments
 (0)