1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

chore: Modify bundleId & packageName.

This commit is contained in:
jaywcjlove
2020-07-28 15:56:07 +08:00
parent 26adf1ac70
commit a9e5bdb91e
7 changed files with 13 additions and 11 deletions

View File

@@ -4,7 +4,7 @@
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.example;
package com.uiwjs.example.alipay;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example">
package="com.uiwjs.example.alipay">
<uses-permission android:name="android.permission.INTERNET" />

View File

@@ -1,4 +1,4 @@
package com.example;
package com.uiwjs.example.alipay;
import com.facebook.react.ReactActivity;

View File

@@ -1,4 +1,4 @@
package com.example;
package com.uiwjs.example.alipay;
import android.app.Application;
import android.content.Context;
@@ -62,7 +62,7 @@ public class MainApplication extends Application implements ReactApplication {
We use reflection here to pick up the class that initializes Flipper,
since Flipper library is not available in release mode
*/
Class<?> aClass = Class.forName("com.example.ReactNativeFlipper");
Class<?> aClass = Class.forName("com.uiwjs.example.alipay.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);