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: [ ]
* ]
* /
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
android {
2018-10-02 20:57:31 +02:00
compileSdkVersion rootProject . ext . compileSdkVersion
buildToolsVersion rootProject . ext . buildToolsVersion
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
2018-10-14 22:41:29 +02:00
versionCode 2097406
versionName "1.0.170"
2017-07-06 21:48:17 +02:00
ndk {
abiFilters "armeabi-v7a" , "x86"
}
}
splits {
abi {
reset ( )
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a" , "x86"
}
}
signingConfigs {
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 {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile ( "proguard-android.txt" ) , "proguard-rules.pro"
signingConfig signingConfigs . release
}
}
// 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
def versionCodes = [ "armeabi-v7a" : 1 , "x86" : 2 ]
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
}
}
}
2017-05-06 16:37:28 +02:00
}
dependencies {
2018-10-13 11:32:44 +02:00
compile project ( ':react-native-camera' )
2018-07-20 11:04:25 +02:00
compile project ( ':react-native-file-viewer' )
2018-01-17 22:16:13 +02:00
compile project ( ':react-native-securerandom' )
compile project ( ':react-native-push-notification' )
compile project ( ':react-native-fs' )
compile project ( ':react-native-image-picker' )
compile project ( ':react-native-vector-icons' )
2017-07-06 21:48:17 +02:00
compile project ( ':react-native-fs' )
2018-10-02 20:57:31 +02:00
implementation fileTree ( dir: "libs" , include: [ "*.jar" ] )
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "com.facebook.react:react-native:+" // From node_modules
2017-07-06 21:48:17 +02:00
compile project ( ':react-native-sqlite-storage' )
2018-10-07 19:55:49 +02:00
compile project ( ':rn-fetch-blob' )
2017-08-01 23:40:14 +02:00
compile project ( ':react-native-document-picker' )
2017-08-02 19:47:25 +02:00
compile project ( ':react-native-image-resizer' )
2018-07-20 11:04:25 +02:00
compile project ( ':react-native-share-extension' )
compile "com.facebook.react:react-native:+"
2018-10-14 22:41:29 +02:00
// To fix this error:
//
// Fatal error
// { Error: Command failed: ./gradlew assembleRelease -PbuildDir=build --console plain
// FAILURE: Build failed with an exception.
// * 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
//
// 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
apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"