ecency-mobile/android/app/build.gradle

241 lines
9.3 KiB
Groovy
Raw Normal View History

2018-07-20 15:57:12 +03:00
apply plugin: "com.android.application"
apply plugin: 'com.google.gms.google-services'
2019-09-13 09:58:29 +03:00
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
2018-07-20 15:57:12 +03:00
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "../../node_modules/react-native/react.gradle"` line.
*
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* bundleAssetName: "index.android.bundle",
*
2021-07-29 13:40:20 +03:00
* // the entry file for bundle generation. If none specified and
* // "index.android.js" exists, it will be used. Otherwise "index.js" is
* // default. Can be overridden with ENTRY_FILE environment variable.
2018-07-20 15:57:12 +03:00
* entryFile: "index.android.js",
*
2021-07-31 10:29:44 +03:00
* // https://reactnative.dev/docs/performance#enable-the-ram-format
2019-09-11 22:42:49 +03:00
* bundleCommand: "ram-bundle",
*
2018-07-20 15:57:12 +03:00
* // whether to bundle JS and assets in debug mode
* bundleInDebug: false,
*
* // whether to bundle JS and assets in release mode
* bundleInRelease: true,
*
* // whether to bundle JS and assets in another build variant (if configured).
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
* // The configuration property can be in the following formats
* // 'bundleIn${productFlavor}${buildType}'
* // 'bundleIn${buildType}'
* // bundleInFreeDebug: true,
* // bundleInPaidRelease: true,
* // bundleInBeta: true,
*
* // whether to disable dev mode in custom build variants (by default only disabled in release)
* // for example: to disable dev mode in the staging build type (if configured)
* devDisabledInStaging: true,
* // The configuration property can be in the following formats
* // 'devDisabledIn${productFlavor}${buildType}'
* // 'devDisabledIn${buildType}'
*
* // the root of your project, i.e. where "package.json" lives
* root: "../../",
*
* // where to put the JS bundle asset in debug mode
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
*
* // where to put the JS bundle asset in release mode
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in debug mode
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in release mode
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
*
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"],
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
*/
project.ext.react = [
2020-01-28 15:50:20 +03:00
enableHermes: true, // clean and rebuild if changing
2018-07-20 15:57:12 +03:00
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
2019-08-08 16:56:03 +03:00
def enableSeparateBuildPerCPUArchitecture = false
2018-07-20 15:57:12 +03:00
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
2020-09-03 23:50:26 +03:00
def enableProguardInReleaseBuilds = false
2018-07-20 15:57:12 +03:00
2019-09-11 22:42:49 +03:00
/**
* The preferred build flavor of JavaScriptCore.
*
* For example, to use the international variant, you can use:
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
*
* The international variant includes ICU i18n library and necessary data
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
2019-09-11 22:42:49 +03:00
/**
* Whether to enable the Hermes VM.
*
* This should be set on project.ext.react and mirrored here. If it is not set
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
* and the benefits of using Hermes will therefore be sharply reduced.
*/
def enableHermes = project.ext.react.get("enableHermes", false);
2020-01-22 19:22:25 +03:00
configurations.all {
resolutionStrategy {
force "com.facebook.soloader:soloader:0.9.0+"
force "androidx.browser:browser:1.3.0"
2020-01-22 19:22:25 +03:00
}
}
2018-07-20 15:57:12 +03:00
android {
compileSdkVersion rootProject.ext.compileSdkVersion
2019-09-11 22:42:49 +03:00
2019-05-29 14:32:35 +03:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-06-03 12:31:27 +03:00
2019-09-13 09:58:29 +03:00
lintOptions {
checkReleaseBuilds false
}
2018-07-20 15:57:12 +03:00
defaultConfig {
2019-09-13 09:58:29 +03:00
applicationId "app.esteem.mobile.android"
2018-07-20 15:57:12 +03:00
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
2019-09-13 09:58:29 +03:00
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
2022-08-31 10:38:48 +03:00
versionName "3.0.34"
2019-09-13 09:58:29 +03:00
resValue "string", "build_config_package", "app.esteem.mobile.android"
2019-10-04 18:56:22 +03:00
multiDexEnabled true
2019-09-13 09:58:29 +03:00
// react-native-image-crop-picker
vectorDrawables.useSupportLibrary = true
2020-01-28 15:50:20 +03:00
ndk {
abiFilters "armeabi-v7a",'x86',"arm64-v8a",'x86_64'
}
missingDimensionStrategy 'store', 'play'
2022-02-25 07:55:27 +03:00
missingDimensionStrategy 'react-native-camera', 'general'
missingDimensionStrategy 'react-native-camera', 'mlkit'
2020-01-28 15:50:20 +03:00
}
dexOptions {
2020-09-03 23:50:26 +03:00
javaMaxHeapSize "9g"
2018-07-20 15:57:12 +03:00
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
2019-08-09 10:56:06 +03:00
universalApk false // If true, also generate a universal APK
2019-05-29 14:32:35 +03:00
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
2018-07-20 15:57:12 +03:00
}
}
2019-09-11 22:42:49 +03:00
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
2018-07-20 15:57:12 +03:00
buildTypes {
2019-09-11 22:42:49 +03:00
debug {
signingConfig signingConfigs.debug
}
2018-07-20 15:57:12 +03:00
release {
2019-09-11 22:42:49 +03:00
// Caution! In production, you need to generate your own keystore file.
2021-07-31 10:29:44 +03:00
// see https://reactnative.dev/docs/signed-apk-android.
2019-12-23 05:48:53 +03:00
// signingConfig signingConfigs.release
2018-07-20 15:57:12 +03:00
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
2019-09-11 22:42:49 +03:00
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
2018-07-20 15:57:12 +03:00
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
2019-01-25 16:40:36 +03:00
}
2018-07-20 15:57:12 +03:00
dependencies {
2018-09-03 13:49:54 +03:00
implementation fileTree(dir: "libs", include: ["*.jar"])
2021-07-29 13:40:20 +03:00
//noinspection GradleDynamicVersion
2021-01-26 00:26:46 +03:00
implementation 'com.facebook.react:react-native:+' // From node_modules
2019-10-04 18:56:22 +03:00
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'
implementation 'com.android.support:multidex:2.0.1'
2022-05-24 12:14:44 +03:00
implementation project(':react-native-pager-view')
2021-08-07 10:37:55 +03:00
implementation 'com.getkeepsafe.relinker:relinker:1.4.4'
2019-09-11 22:42:49 +03:00
if (enableHermes) {
2019-10-09 18:26:38 +03:00
def hermesPath = "../../node_modules/hermes-engine/android/";
debugImplementation files(hermesPath + "hermes-debug.aar")
releaseImplementation files(hermesPath + "hermes-release.aar")
2019-09-11 22:42:49 +03:00
} else {
2019-10-09 18:26:38 +03:00
implementation jscFlavor
2019-09-11 22:42:49 +03:00
}
2018-07-20 15:57:12 +03:00
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
2018-12-16 21:08:20 +03:00
2019-09-11 22:42:49 +03:00
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
2021-01-25 21:16:17 +03:00
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
2021-07-29 14:12:25 +03:00
2021-07-29 23:54:59 +03:00
apply plugin: "com.bugsnag.android.gradle"
2021-07-29 14:19:31 +03:00
bugsnag {
uploadReactNativeMappings = true
2021-07-29 15:25:57 +03:00
overwrite = true
2021-07-29 14:19:31 +03:00
}