2018-09-11 22:27:47 +00:00
|
|
|
// Copyright (c) Facebook, Inc. and its affiliates.
|
2018-09-07 20:08:05 +00:00
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
|
|
|
|
2015-11-18 20:17:39 +00:00
|
|
|
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
|
2015-10-19 13:32:02 +00:00
|
|
|
def config = project.hasProperty("react") ? project.react : [];
|
|
|
|
|
2017-04-10 19:08:07 +00:00
|
|
|
def cliPath = config.cliPath ?: "node_modules/react-native/local-cli/cli.js"
|
2015-10-19 13:32:02 +00:00
|
|
|
def bundleAssetName = config.bundleAssetName ?: "index.android.bundle"
|
|
|
|
def entryFile = config.entryFile ?: "index.android.js"
|
2017-10-14 00:22:00 +00:00
|
|
|
def bundleCommand = config.bundleCommand ?: "bundle"
|
2018-08-03 23:55:37 +00:00
|
|
|
def reactRoot = file(config.root ?: "../../")
|
2015-10-19 13:32:02 +00:00
|
|
|
def inputExcludes = config.inputExcludes ?: ["android/**", "ios/**"]
|
2017-10-14 00:22:00 +00:00
|
|
|
def bundleConfig = config.bundleConfig ? "${reactRoot}/${config.bundleConfig}" : null ;
|
2015-10-19 13:32:02 +00:00
|
|
|
|
2016-01-07 17:32:46 +00:00
|
|
|
|
2018-03-26 05:00:11 +00:00
|
|
|
afterEvaluate {
|
2018-08-03 23:55:37 +00:00
|
|
|
android.applicationVariants.all { def variant ->
|
|
|
|
// Create variant and target names
|
|
|
|
def targetName = variant.name.capitalize()
|
|
|
|
def targetPath = variant.dirName
|
|
|
|
|
|
|
|
// React js bundle directories
|
|
|
|
def jsBundleDir = file("$buildDir/generated/assets/react/${targetPath}")
|
|
|
|
def resourcesDir = file("$buildDir/generated/res/react/${targetPath}")
|
|
|
|
|
|
|
|
def jsBundleFile = file("$jsBundleDir/$bundleAssetName")
|
|
|
|
|
|
|
|
// Additional node and packager commandline arguments
|
|
|
|
def nodeExecutableAndArgs = config.nodeExecutableAndArgs ?: ["node"]
|
|
|
|
def extraPackagerArgs = config.extraPackagerArgs ?: []
|
|
|
|
|
|
|
|
def currentBundleTask = tasks.create(
|
|
|
|
name: "bundle${targetName}JsAndAssets",
|
|
|
|
type: Exec) {
|
|
|
|
group = "react"
|
|
|
|
description = "bundle JS and assets for ${targetName}."
|
|
|
|
|
|
|
|
// Create dirs if they are not there (e.g. the "clean" task just ran)
|
|
|
|
doFirst {
|
|
|
|
jsBundleDir.deleteDir()
|
|
|
|
jsBundleDir.mkdirs()
|
|
|
|
resourcesDir.deleteDir()
|
|
|
|
resourcesDir.mkdirs()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up inputs and outputs so gradle can cache the result
|
|
|
|
inputs.files fileTree(dir: reactRoot, excludes: inputExcludes)
|
|
|
|
outputs.dir jsBundleDir
|
|
|
|
outputs.dir resourcesDir
|
|
|
|
|
|
|
|
// Set up the call to the react-native cli
|
|
|
|
workingDir reactRoot
|
|
|
|
|
|
|
|
// Set up dev mode
|
|
|
|
def devEnabled = !(config."devDisabledIn${targetName}"
|
|
|
|
|| targetName.toLowerCase().contains("release"))
|
|
|
|
|
|
|
|
def extraArgs = extraPackagerArgs;
|
|
|
|
|
|
|
|
if (bundleConfig) {
|
|
|
|
extraArgs = extraArgs.clone()
|
|
|
|
extraArgs.add("--config");
|
|
|
|
extraArgs.add(bundleConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|
|
|
commandLine("cmd", "/c", *nodeExecutableAndArgs, cliPath, bundleCommand, "--platform", "android", "--dev", "${devEnabled}",
|
|
|
|
"--reset-cache", "--entry-file", entryFile, "--bundle-output", jsBundleFile, "--assets-dest", resourcesDir, *extraArgs)
|
|
|
|
} else {
|
|
|
|
commandLine(*nodeExecutableAndArgs, cliPath, bundleCommand, "--platform", "android", "--dev", "${devEnabled}",
|
|
|
|
"--reset-cache", "--entry-file", entryFile, "--bundle-output", jsBundleFile, "--assets-dest", resourcesDir, *extraArgs)
|
|
|
|
}
|
|
|
|
|
|
|
|
enabled config."bundleIn${targetName}" ||
|
|
|
|
config."bundleIn${variant.buildType.name.capitalize()}" ?:
|
|
|
|
targetName.toLowerCase().contains("release")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expose a minimal interface on the application variant and the task itself:
|
|
|
|
variant.ext.bundleJsAndAssets = currentBundleTask
|
|
|
|
currentBundleTask.ext.generatedResFolders = files(resourcesDir).builtBy(currentBundleTask)
|
|
|
|
currentBundleTask.ext.generatedAssetsFolders = files(jsBundleDir).builtBy(currentBundleTask)
|
|
|
|
|
|
|
|
// registerGeneratedResFolders for Android plugin 3.x
|
|
|
|
if (variant.respondsTo("registerGeneratedResFolders")) {
|
|
|
|
variant.registerGeneratedResFolders(currentBundleTask.generatedResFolders)
|
|
|
|
} else {
|
|
|
|
variant.registerResGeneratingTask(currentBundleTask)
|
|
|
|
}
|
|
|
|
variant.mergeResources.dependsOn(currentBundleTask)
|
|
|
|
|
|
|
|
// packageApplication for Android plugin 3.x
|
|
|
|
def packageTask = variant.hasProperty("packageApplication")
|
|
|
|
? variant.packageApplication
|
|
|
|
: tasks.findByName("package${targetName}")
|
|
|
|
|
|
|
|
def resourcesDirConfigValue = config."resourcesDir${targetName}"
|
|
|
|
if (resourcesDirConfigValue) {
|
|
|
|
def currentCopyResTask = tasks.create(
|
|
|
|
name: "copy${targetName}BundledResources",
|
|
|
|
type: Copy) {
|
2016-01-08 20:11:34 +00:00
|
|
|
group = "react"
|
2018-08-03 23:55:37 +00:00
|
|
|
description = "copy bundled resources into custom location for ${targetName}."
|
|
|
|
|
|
|
|
from resourcesDir
|
|
|
|
into file(resourcesDirConfigValue)
|
|
|
|
|
|
|
|
dependsOn(currentBundleTask)
|
|
|
|
|
|
|
|
enabled currentBundleTask.enabled
|
2016-01-08 20:11:34 +00:00
|
|
|
}
|
|
|
|
|
2018-08-03 23:55:37 +00:00
|
|
|
packageTask.dependsOn(currentCopyResTask)
|
|
|
|
}
|
|
|
|
|
|
|
|
def currentAssetsCopyTask = tasks.create(
|
|
|
|
name: "copy${targetName}BundledJs",
|
|
|
|
type: Copy) {
|
|
|
|
group = "react"
|
|
|
|
description = "copy bundled JS into ${targetName}."
|
2016-01-08 20:11:34 +00:00
|
|
|
|
2018-10-02 09:55:40 +00:00
|
|
|
if (config."jsBundleDir${targetName}") {
|
|
|
|
from jsBundleDir
|
|
|
|
into file(config."jsBundleDir${targetName}")
|
|
|
|
} else {
|
|
|
|
into ("$buildDir/intermediates")
|
|
|
|
into ("assets/${targetPath}") {
|
|
|
|
from jsBundleDir
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workaround for Android Gradle Plugin 3.2+ new asset directory
|
2018-10-31 12:27:13 +00:00
|
|
|
into ("merged_assets/${variant.name}/merge${targetName}Assets/out") {
|
2018-10-02 09:55:40 +00:00
|
|
|
from jsBundleDir
|
|
|
|
}
|
|
|
|
}
|
2018-08-03 23:55:37 +00:00
|
|
|
|
|
|
|
// mergeAssets must run first, as it clears the intermediates directory
|
|
|
|
dependsOn(variant.mergeAssets)
|
|
|
|
|
|
|
|
enabled currentBundleTask.enabled
|
2016-01-08 20:11:34 +00:00
|
|
|
}
|
2018-08-03 23:55:37 +00:00
|
|
|
|
|
|
|
packageTask.dependsOn(currentAssetsCopyTask)
|
2016-01-08 20:11:34 +00:00
|
|
|
}
|
2015-10-19 13:32:02 +00:00
|
|
|
}
|