This commit is contained in:
Marcos Rodriguez Velez 2023-12-19 09:54:24 -04:00
parent 9eebef80cc
commit 3d77b58015
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7
2 changed files with 2 additions and 6 deletions

View file

@ -1,9 +1,6 @@
apply plugin: "com.android.application"
apply plugin: "kotlin-android"
apply plugin: "com.facebook.react"
import com.android.build.OutputFile
/**
* This is the configuration block to customize your React Native Android app.
* By default you don't need to apply any configuration, just uncomment the lines you need.
@ -76,6 +73,7 @@ android {
compileSdkVersion rootProject.ext.compileSdkVersion
namespace "io.bluewallet.bluewallet"
defaultConfig {
applicationId "io.bluewallet.bluewallet"
minSdkVersion rootProject.ext.minSdkVersion
@ -95,8 +93,6 @@ android {
proguardFile "${rootProject.projectDir}/../node_modules/detox/android/detox/proguard-rules-app.pro"
}
}
namespace 'io.bluewallet.bluewallet'
}
dependencies {
@ -114,4 +110,5 @@ dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
}
apply plugin: 'com.google.gms.google-services' // Google Services plugin
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

View file

@ -1,6 +1,5 @@
module.exports = {
maxWorkers: 1,
preset: 'react-native',
testTimeout: 333_000,
verbose: true,
reporters: ['detox/runners/jest/reporter'],