@@ -86,11 +86,11 @@ if (!sentrySlug.contains('SENTRY_ORGANIZATION')) {
8686}
8787
8888android {
89- ndkVersion = rootProject. ext. ndkVersion
90- buildToolsVersion = rootProject. ext. buildToolsVersion
91- compileSdk = rootProject. ext. compileSdkVersion
89+ ndkVersion rootProject. ext. ndkVersion
90+ buildToolsVersion rootProject. ext. buildToolsVersion
91+ compileSdk rootProject. ext. compileSdkVersion
9292
93- namespace = " co.edgesecure.app"
93+ namespace " co.edgesecure.app"
9494 defaultConfig {
9595 applicationId " co.edgesecure.app"
9696 minSdkVersion rootProject. ext. minSdkVersion
@@ -99,7 +99,7 @@ android {
9999 versionName " 99.99.99"
100100
101101 // Edge addition:
102- multiDexEnabled = true
102+ multiDexEnabled true
103103 ndk {
104104 abiFilters ' armeabi-v7a' , ' arm64-v8a' // Exclude Intel
105105 }
@@ -113,7 +113,7 @@ android {
113113 release {
114114 // Caution! In production, you need to generate your own keystore file.
115115 // see https://reactnative.dev/docs/signed-apk-android.
116- signingConfig = signingConfigs. release
116+ signingConfig signingConfigs. release
117117 minifyEnabled enableProguardInReleaseBuilds
118118 proguardFiles getDefaultProguardFile(" proguard-android.txt" ), " proguard-rules.pro"
119119 }
@@ -123,7 +123,7 @@ android {
123123 compileOptions {
124124 sourceCompatibility JavaVersion . VERSION_11
125125 targetCompatibility JavaVersion . VERSION_11
126- coreLibraryDesugaringEnabled = true
126+ coreLibraryDesugaringEnabled true
127127 }
128128
129129 // Edge hacks for zcash and piratechain conflicts:
0 commit comments