Skip to content

Commit

Permalink
fix: broken api response
Browse files Browse the repository at this point in the history
  • Loading branch information
abishek-trainn committed Nov 2, 2022
1 parent d81a8a5 commit 558eed2
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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.atomm.music",
package = "com.atomm.open",
)

android_resource(
name = "res",
package = "com.atomm.music",
package = "com.atomm.open",
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 @@ -131,7 +131,7 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion

defaultConfig {
applicationId "com.atomm.music"
applicationId "com.atomm.open"
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.atomm.music;
package com.atomm.open;

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.atomm.music">
package="com.atomm.open">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.atomm.music;
package com.atomm.open;

import com.facebook.react.bridge.JSIModuleSpec;
import com.facebook.react.bridge.JavaScriptContextHolder;
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/java/com/atomm/MainActivity.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.atomm.music;
package com.atomm.open;

import com.facebook.react.ReactActivity;

Expand Down
6 changes: 3 additions & 3 deletions android/app/src/main/java/com/atomm/MainApplication.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.atomm.music;
package com.atomm.open;

import android.app.Application;
import android.content.Context;
Expand All @@ -8,7 +8,7 @@
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.JSIModulePackage;
import com.atomm.music.CustomMMKVJSIModulePackage;
import com.atomm.open.CustomMMKVJSIModulePackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.InvocationTargetException;
import java.util.List;
Expand Down Expand Up @@ -69,7 +69,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.atomm.music.ReactNativeFlipper");
Class<?> aClass = Class.forName("com.atomm.open.ReactNativeFlipper");
aClass
.getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
.invoke(null, context, reactInstanceManager);
Expand Down
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ FLIPPER_VERSION=0.99.0

MYAPP_UPLOAD_STORE_FILE=my-upload-key.keystore
MYAPP_UPLOAD_KEY_ALIAS=my-key-alias
MYAPP_UPLOAD_STORE_PASSWORD=abishots17
MYAPP_UPLOAD_KEY_PASSWORD=abishots17
MYAPP_UPLOAD_STORE_PASSWORD=**********
MYAPP_UPLOAD_KEY_PASSWORD=***********

0 comments on commit 558eed2

Please sign in to comment.