ecency-mobile/android/app/build.gradle

190 lines
7.6 KiB
Groovy
Raw Normal View History

2018-07-20 15:57:12 +03:00
apply plugin: "com.android.application"
2018-11-25 23:56:51 +03:00
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
2019-07-24 12:28:52 +03:00
apply plugin: 'com.bugsnag.android.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",
*
* // the entry file for bundle generation
* entryFile: "index.android.js",
*
* // 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 = [
2019-02-07 23:47:31 +03:00
bundleCommand: "ram-bundle",
entryFile: "index.js"
2018-07-20 15:57:12 +03:00
]
apply from: "../../node_modules/react-native/react.gradle"
2019-01-04 12:16:09 +03:00
apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
2018-07-20 15:57:12 +03:00
/**
* 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 11:43:53 +03:00
def enableSeparateBuildPerCPUArchitecture = true
2018-07-20 15:57:12 +03:00
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
android {
compileSdkVersion rootProject.ext.compileSdkVersion
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
lintOptions {
checkReleaseBuilds false
}
2018-07-20 15:57:12 +03:00
defaultConfig {
applicationId "app.esteem.mobile.android"
2018-07-20 15:57:12 +03:00
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
2019-01-10 22:54:52 +03:00
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
2019-07-29 20:38:57 +03:00
versionName "2.2.0"
2018-12-04 23:05:21 +03:00
vectorDrawables.useSupportLibrary = true
2019-07-24 12:28:52 +03:00
resValue "string", "build_config_package", "app.esteem.mobile.android"
2018-07-20 15:57:12 +03:00
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
2019-08-08 12:08:51 +03:00
universalApk true // 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
}
}
buildTypes {
release {
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:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
2019-05-29 14:32:35 +03:00
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
configurations.all {
resolutionStrategy {
force 'org.webkit:android-jsc:r236355'
}
}
2018-07-20 15:57:12 +03:00
dependencies {
implementation project(':@react-native-community_netinfo')
implementation project(':react-native-image-crop-picker')
implementation project(':react-native-fast-image')
implementation project(':react-native-iap')
2019-07-04 19:56:29 +03:00
implementation project(':react-native-navigation-bar-color')
2019-05-30 18:40:24 +03:00
implementation project(':bugsnag-react-native')
2019-05-29 14:32:35 +03:00
implementation project(':react-native-version-number')
implementation project(':react-native-code-push')
implementation project(':realm')
implementation project(':appcenter-push')
implementation project(':react-native-view-overflow')
implementation project(':react-native-vector-icons')
implementation project(':react-native-linear-gradient')
implementation project(':react-native-config')
implementation project(':appcenter-crashes')
implementation project(':appcenter-analytics')
implementation project(':appcenter')
2019-02-08 18:10:12 +03:00
implementation 'com.microsoft.appcenter:appcenter-push:1.11.2'
2019-05-29 14:32:35 +03:00
implementation 'com.facebook.fresco:animated-gif:1.10.0'
2018-09-03 13:49:54 +03:00
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
2018-09-03 13:49:54 +03:00
implementation "com.facebook.react:react-native:+" // From node_modules
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
// Add to the bottom of the file
2018-12-16 22:32:32 +03:00
apply plugin: 'com.google.gms.google-services'