From ae8386555339c7b099e2e5293986912880c5de49 Mon Sep 17 00:00:00 2001 From: Drzaln Date: Tue, 9 Feb 2021 06:58:01 +0700 Subject: [PATCH] change app id --- android/app/_BUCK | 4 ++-- android/app/build.gradle | 2 +- .../app/src/debug/java/com/simplenote/ReactNativeFlipper.java | 2 +- android/app/src/main/AndroidManifest.xml | 2 +- android/app/src/main/java/com/simplenote/MainActivity.java | 2 +- android/app/src/main/java/com/simplenote/MainApplication.java | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/android/app/_BUCK b/android/app/_BUCK index e884193..542cd7f 100644 --- a/android/app/_BUCK +++ b/android/app/_BUCK @@ -35,12 +35,12 @@ android_library( android_build_config( name = "build_config", - package = "com.simplenote", + package = "com.simplenote.drzaln", ) android_resource( name = "res", - package = "com.simplenote", + package = "com.simplenote.drzaln", res = "src/main/res", ) diff --git a/android/app/build.gradle b/android/app/build.gradle index 5a20caf..f11c321 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -129,7 +129,7 @@ android { } defaultConfig { - applicationId "com.simplenote" + applicationId "com.simplenote.drzaln" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 diff --git a/android/app/src/debug/java/com/simplenote/ReactNativeFlipper.java b/android/app/src/debug/java/com/simplenote/ReactNativeFlipper.java index 30240f7..f72f093 100644 --- a/android/app/src/debug/java/com/simplenote/ReactNativeFlipper.java +++ b/android/app/src/debug/java/com/simplenote/ReactNativeFlipper.java @@ -4,7 +4,7 @@ *

This source code is licensed under the MIT license found in the LICENSE file in the root * directory of this source tree. */ -package com.simplenote; +package com.simplenote.drzaln; import android.content.Context; import com.facebook.flipper.android.AndroidFlipperClient; diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index c95ea88..ea87848 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,5 @@ + package="com.simplenote.drzaln"> diff --git a/android/app/src/main/java/com/simplenote/MainActivity.java b/android/app/src/main/java/com/simplenote/MainActivity.java index 51fbd13..f47f8a2 100644 --- a/android/app/src/main/java/com/simplenote/MainActivity.java +++ b/android/app/src/main/java/com/simplenote/MainActivity.java @@ -1,4 +1,4 @@ -package com.simplenote; +package com.simplenote.drzaln; import com.facebook.react.ReactActivity; import com.facebook.react.ReactActivityDelegate; diff --git a/android/app/src/main/java/com/simplenote/MainApplication.java b/android/app/src/main/java/com/simplenote/MainApplication.java index 0cd0066..c66f9ea 100644 --- a/android/app/src/main/java/com/simplenote/MainApplication.java +++ b/android/app/src/main/java/com/simplenote/MainApplication.java @@ -1,4 +1,4 @@ -package com.simplenote; +package com.simplenote.drzaln; import android.app.Application; import android.content.Context; @@ -62,7 +62,7 @@ private static void initializeFlipper( 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.simplenote.ReactNativeFlipper"); + Class aClass = Class.forName("com.simplenote.drzaln.ReactNativeFlipper"); aClass .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) .invoke(null, context, reactInstanceManager);