Skip to content

Commit

Permalink
Merge pull request #15 from Drzaln/development
Browse files Browse the repository at this point in the history
change app id
  • Loading branch information
Drzaln authored Feb 8, 2021
2 parents 4be062e + ae83865 commit 8a41293
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/_BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)

Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ android {
}

defaultConfig {
applicationId "com.simplenote"
applicationId "com.simplenote.drzaln"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.simplenote;
package com.simplenote.drzaln;

import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.simplenote">
package="com.simplenote.drzaln">

<uses-permission android:name="android.permission.INTERNET" />

Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/simplenote/MainActivity.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.simplenote;
package com.simplenote.drzaln;

import com.facebook.react.ReactActivity;
import com.facebook.react.ReactActivityDelegate;
Expand Down
4 changes: 2 additions & 2 deletions android/app/src/main/java/com/simplenote/MainApplication.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.simplenote;
package com.simplenote.drzaln;

import android.app.Application;
import android.content.Context;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 8a41293

Please sign in to comment.