2017-05-06 16:37:28 +02:00
apply plugin: "com.android.application"
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,
*
* // 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: [ ]
* ]
* /
2020-02-09 19:42:19 +02:00
project . ext . react = [
entryFile: "index.android.js" ,
enableHermes: false , // clean and rebuild if changing
]
2017-05-06 16:37:28 +02: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 4 MB .
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device .
* /
2018-01-17 22:16:13 +02:00
def enableSeparateBuildPerCPUArchitecture = false
2017-05-06 16:37:28 +02:00
/ * *
* Run Proguard to shrink the Java bytecode in release builds .
* /
def enableProguardInReleaseBuilds = false
2020-02-09 19:42:19 +02: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 6 MiB larger per architecture than default .
* /
def jscFlavor = 'org.webkit:android-jsc:+'
/ * *
* 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 ) ;
2017-05-06 16:37:28 +02:00
android {
2018-10-02 20:57:31 +02:00
compileSdkVersion rootProject . ext . compileSdkVersion
2020-08-02 14:34:09 +02:00
2020-08-02 14:37:32 +02:00
// To fix this error:
// > java.io.UncheckedIOException: java.io.IOException: Execution of compression failed. java.lang.OutOfMemoryError
// https://stackoverflow.com/q/57284812/561309
2020-08-02 14:34:09 +02:00
dexOptions { javaMaxHeapSize "4g" }
2019-06-14 08:12:24 +02:00
compileOptions {
sourceCompatibility JavaVersion . VERSION_1_8
targetCompatibility JavaVersion . VERSION_1_8
}
2017-05-06 16:37:28 +02:00
2017-07-06 21:48:17 +02:00
defaultConfig {
2017-07-08 00:25:03 +02:00
applicationId "net.cozic.joplin"
2018-10-02 20:57:31 +02:00
minSdkVersion rootProject . ext . minSdkVersion
targetSdkVersion rootProject . ext . targetSdkVersion
2020-10-06 14:06:48 +02:00
versionCode 2097580
versionName "1.2.3"
2017-07-06 21:48:17 +02:00
ndk {
2019-06-15 19:48:07 +02:00
abiFilters "armeabi-v7a" , "x86" , "arm64-v8a" , "x86_64"
2017-07-06 21:48:17 +02:00
}
2019-06-14 23:45:35 +02:00
missingDimensionStrategy 'react-native-camera' , 'general'
2017-07-06 21:48:17 +02:00
}
splits {
abi {
reset ( )
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
2019-06-14 08:12:24 +02:00
include "armeabi-v7a" , "x86" , "arm64-v8a" , "x86_64"
2017-07-06 21:48:17 +02:00
}
}
signingConfigs {
2020-02-09 19:42:19 +02:00
debug {
storeFile file ( 'debug.keystore' )
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
2017-07-06 21:48:17 +02:00
release {
if ( project . hasProperty ( 'JOPLIN_RELEASE_STORE_FILE' ) ) {
storeFile file ( JOPLIN_RELEASE_STORE_FILE )
storePassword JOPLIN_RELEASE_STORE_PASSWORD
keyAlias JOPLIN_RELEASE_KEY_ALIAS
keyPassword JOPLIN_RELEASE_KEY_PASSWORD
}
}
}
buildTypes {
2020-02-09 19:42:19 +02:00
debug {
signingConfig signingConfigs . debug
}
2017-07-06 21:48:17 +02:00
release {
2020-02-09 19:42:19 +02:00
// Caution! In production, you need to generate your own keystore file.
// see https://facebook.github.io/react-native/docs/signed-apk-android.
signingConfig signingConfigs . release
2017-07-06 21:48:17 +02: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:
2020-02-09 19:42:19 +02:00
// https://developer.android.com/studio/build/configure-apk-splits.html
def versionCodes = [ "armeabi-v7a" : 1 , "x86" : 2 , "arm64-v8a" : 3 , "x86_64" : 4 ]
2017-07-06 21:48:17 +02: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
}
}
}
2020-02-09 22:21:52 +02:00
2017-05-06 16:37:28 +02:00
}
dependencies {
2019-06-14 19:37:46 +02:00
implementation "org.webkit:android-jsc:r241213"
2019-01-10 20:49:26 +02:00
compile project ( ':react-native-push-notification' )
2019-06-14 23:31:01 +02:00
// implementation (project(':react-native-camera')) {
// // This is required because com.google.firebase requires v16.0.x of com.google.android.gms
// // while react-native-camera requires v15.x, which results in broken dependencies with
// // this error message:
// //
// // The library com.google.android.gms:play-services-base is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1
// //
// // For the record: found solution by removing all Firebase stuff here and running "gradlew.bat :app:dependencies"
// // That shows that react-native-camera was the one requiring v15.0.1.
// exclude group: "com.google.android.gms"
// }
2018-12-16 15:11:45 +02:00
implementation project ( ':react-native-file-viewer' )
implementation project ( ':react-native-securerandom' )
implementation project ( ':react-native-fs' )
implementation project ( ':react-native-image-picker' )
implementation project ( ':react-native-vector-icons' )
implementation project ( ':react-native-fs' )
2018-10-02 20:57:31 +02:00
implementation fileTree ( dir: "libs" , include: [ "*.jar" ] )
2020-02-10 00:15:36 +02:00
implementation "com.android.support:appcompat-v7:28.0.0"
2018-10-02 20:57:31 +02:00
implementation "com.facebook.react:react-native:+" // From node_modules
2020-02-09 19:42:19 +02:00
if ( enableHermes ) {
2020-02-09 22:21:52 +02:00
def hermesPath = "../../node_modules/hermes-engine/android/" ;
debugImplementation files ( hermesPath + "hermes-debug.aar" )
releaseImplementation files ( hermesPath + "hermes-release.aar" )
2020-02-09 19:42:19 +02:00
} else {
2020-02-09 22:21:52 +02:00
implementation jscFlavor
2020-02-09 19:42:19 +02:00
}
2018-12-16 15:11:45 +02:00
implementation project ( ':react-native-sqlite-storage' )
implementation project ( ':rn-fetch-blob' )
implementation project ( ':react-native-document-picker' )
implementation project ( ':react-native-image-resizer' )
2020-02-09 16:51:12 +02:00
// implementation project(':react-native-share-extension')
2018-12-16 15:11:45 +02:00
implementation project ( ':react-native-version-info' )
2019-06-14 23:45:35 +02:00
implementation project ( ':react-native-camera' )
2018-12-16 15:11:45 +02:00
implementation "com.facebook.react:react-native:+"
2020-02-19 01:52:36 +02:00
implementation project ( ':react-native-quick-actions' )
2018-12-16 15:11:45 +02:00
2019-01-25 19:54:43 +02:00
// implementation "com.google.android.gms:play-services-base:16.0.1" // For Firebase
// implementation 'me.leolin:ShortcutBadger:1.1.21@aar' // For Firebase - this line if you wish to use badge on Android
2018-10-14 22:41:29 +02:00
2018-10-15 19:40:11 +02:00
// To fix the error below, which happened after adding react-native-camera.
// Doesn't make any sense since rn-camera neither defines v26 nor 27 but
// v25.0.2 in build.gradle, but anyway now it works ¯\_(ツ)_/¯
// --------------------------------------------------------------------------------------
2018-10-14 22:41:29 +02:00
// Fatal error
// { Error: Command failed: ./gradlew assembleRelease -PbuildDir=build --console plain
2018-10-15 19:40:11 +02:00
//
2018-10-14 22:41:29 +02:00
// FAILURE: Build failed with an exception.
2018-10-15 19:40:11 +02:00
//
2018-10-14 22:41:29 +02:00
// * What went wrong:
// Execution failed for task ':app:preReleaseBuild'.
// > Android dependency 'com.android.support:support-v4' has different version for the compile (26.1.0) and runtime (27.1.1) classpath. You should manually set the same version via DependencyResolution
2018-10-15 19:40:11 +02:00
// --------------------------------------------------------------------------------------
2018-10-14 22:41:29 +02:00
// https://github.com/react-native-community/react-native-camera/issues/1532#issuecomment-386434771
compile ( "com.android.support:support-v4:26.0.1" ) {
force = true //<-- force dependency resolution to 26.0.1 in my case
}
2017-05-06 16:37:28 +02: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 ) {
2017-07-06 21:48:17 +02:00
from configurations . compile
into 'libs'
2017-05-06 16:37:28 +02:00
}
2017-05-16 23:05:53 +02:00
2020-02-09 19:42:19 +02:00
apply from: file ( "../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle" ) ; applyNativeModulesAppBuildGradle ( project )
2019-01-10 20:49:26 +02:00
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"