Skip to content

Commit

Permalink
Remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
islathehut committed Nov 13, 2024
1 parent d58c7cc commit c91145e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ project.android.sourceSets.main.assets.srcDirs+="${rootProject.buildDir}/nodejs-

tasks.getByPath(":${project.name}:preBuild").dependsOn GenerateNodeProjectAssetsLists

def abi_name = 'arm64-v8a'
def abi_name = 'arm64'

task "GenerateNodeNativeAssetsLists${abi_name}" {
description "Generates a list for runtime copying"
Expand Down
3 changes: 1 addition & 2 deletions packages/mobile/android/app/src/main/cpp/own-native-lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,7 @@ Java_com_quietmobile_Backend_BackendWorker_startNodeWithArguments(
// Set the builtin_modules path to NODE_PATH.
const char *path_path = env->GetStringUTFChars(modulesPath, 0);
setenv("NODE_PATH", path_path, 1);
setenv("DEBUG", "*", 1);
setenv("NODE_DEBUG", "*", 1);
setenv("DEBUG", "backend*,quiet*,state-manager*,desktop*,utils*,identity*,common*,libp2p:connection-manager:auto-dial", 1);
env->ReleaseStringUTFChars(modulesPath, path_path);

// argc
Expand Down

0 comments on commit c91145e

Please sign in to comment.