2018-09-11 15:27:47 -07:00
|
|
|
// Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-31 15:31:03 -07:00
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
2015-09-14 15:35:58 +01:00
|
|
|
|
2019-02-09 10:14:55 -08:00
|
|
|
apply(plugin: "maven")
|
|
|
|
apply(plugin: "signing")
|
2015-09-14 15:35:58 +01:00
|
|
|
|
2018-12-27 14:45:36 -08:00
|
|
|
ext {
|
|
|
|
AAR_OUTPUT_URL = "file://${projectDir}/../android"
|
|
|
|
}
|
|
|
|
|
2015-09-14 15:35:58 +01:00
|
|
|
// Gradle tasks for publishing to maven
|
|
|
|
// 1) To install in local maven repo use :installArchives task
|
|
|
|
// 2) To upload artifact to maven central use: :uploadArchives (you'd need to have the permission to do that)
|
|
|
|
|
|
|
|
def isReleaseBuild() {
|
2019-02-09 10:14:55 -08:00
|
|
|
return VERSION_NAME.contains("SNAPSHOT") == false
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def getRepositoryUrl() {
|
2019-02-09 10:14:55 -08:00
|
|
|
return project.findProperty("repositoryUrl") ?: "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def getRepositoryUsername() {
|
2019-02-09 10:14:55 -08:00
|
|
|
return project.findProperty("repositoryUsername") ?: ""
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def getRepositoryPassword() {
|
2019-02-09 10:14:55 -08:00
|
|
|
return project.findProperty("repositoryPassword") ?: ""
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def configureReactNativePom(def pom) {
|
|
|
|
pom.project {
|
2019-02-09 10:14:55 -08:00
|
|
|
name(POM_NAME)
|
|
|
|
artifactId(POM_ARTIFACT_ID)
|
|
|
|
packaging(POM_PACKAGING)
|
|
|
|
description("A framework for building native apps with React")
|
|
|
|
url("https://github.com/facebook/react-native")
|
2015-09-14 15:35:58 +01:00
|
|
|
|
|
|
|
scm {
|
2019-02-09 10:14:55 -08:00
|
|
|
url("https://github.com/facebook/react-native.git")
|
|
|
|
connection("scm:git:https://github.com/facebook/react-native.git")
|
|
|
|
developerConnection("scm:git:git@github.com:facebook/react-native.git")
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
licenses {
|
|
|
|
license {
|
2019-02-09 10:14:55 -08:00
|
|
|
name("MIT License")
|
|
|
|
url("https://github.com/facebook/react-native/blob/master/LICENSE")
|
|
|
|
distribution("repo")
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
developers {
|
|
|
|
developer {
|
2019-02-09 10:14:55 -08:00
|
|
|
id("facebook")
|
|
|
|
name("Facebook")
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 07:55:33 -07:00
|
|
|
if (JavaVersion.current().isJava8Compatible()) {
|
|
|
|
allprojects {
|
|
|
|
tasks.withType(Javadoc) {
|
2019-02-09 10:14:55 -08:00
|
|
|
options.addStringOption("Xdoclint:none", "-quiet")
|
2016-10-28 07:55:33 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 15:35:58 +01:00
|
|
|
afterEvaluate { project ->
|
|
|
|
|
|
|
|
task androidJavadoc(type: Javadoc) {
|
|
|
|
source = android.sourceSets.main.java.srcDirs
|
|
|
|
classpath += files(android.bootClasspath)
|
2019-02-09 10:14:55 -08:00
|
|
|
classpath += files(project.getConfigurations().getByName("compile").asList())
|
|
|
|
include("**/*.java")
|
|
|
|
exclude("**/ReactBuildConfig.java")
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
|
2019-02-09 10:14:55 -08:00
|
|
|
classifier = "javadoc"
|
|
|
|
from(androidJavadoc.destinationDir)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task androidSourcesJar(type: Jar) {
|
2019-02-09 10:14:55 -08:00
|
|
|
classifier = "sources"
|
|
|
|
from(android.sourceSets.main.java.srcDirs)
|
|
|
|
include("**/*.java")
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
android.libraryVariants.all { variant ->
|
|
|
|
def name = variant.name.capitalize()
|
- update to gradle 4.10.1 or high (#23103)
Summary:
Add suport to gradle 4.10.1 or high!
The new version of android studio 3.3 recommendete to update gradle project to 4.10.1
> To take advantage of the latest features, improvements, and security fixes, we strongly recommend that you update the Android Gradle plugin to version 3.3.0 and Gradle to version 4.10.1. [Release notes ](https://developer.android.com/studio/releases/gradle-plugin)
>Android plugin 3.2.0 and higher now support building the Android App Bundle—a new upload format that defers APK generation and signing to compatible app stores, such as Google Play. With app bundles, you no longer have to build, sign, and manage multiple APKs, and users get smaller, more optimized downloads. [Learn more](https://developer.android.com/guide/app-bundle/?utm_source=android-studio)
but if the upgrade to the new Android gradle many warnings come up, becouse meny things was obsoleted
> WARNING: API 'variant.getMergeResources()' is obsolete and has been replaced with 'variant.getMergeResourcesProvider()'.
> WARNING: API 'variant.getPackageApplication()' is obsolete and has been replaced with 'variant.getPackageApplicationProvider()'.
> WARNING: API 'variant.getMergeAssets()' is obsolete and has been replaced with 'variant.getMergeAssetsProvider()'.
> It will be removed at the end of 2019.
> For more information, [see ](https://d.android.com/r/tools/task-configuration-avoidance.)
> To determine what is calling variant.getMergeAssets(), use -Pandroid.debug.obsoleteApi=true on the command line to display a stack trace.
Changelog:
----------
[Android] [Deprecated] - fix warinings obsolete to update to gradle 4.10.1 or high
Pull Request resolved: https://github.com/facebook/react-native/pull/23103
Differential Revision: D13817123
Pulled By: cpojer
fbshipit-source-id: 9816e20145a5fded2702cf9317cfb6862f3ebd8b
2019-01-25 03:12:51 -08:00
|
|
|
task "jar${name}"(type: Jar, dependsOn: variant.javaCompileProvider.get()) {
|
2019-02-09 10:14:55 -08:00
|
|
|
from(variant.javaCompileProvider.get().destinationDir)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
2019-02-09 10:14:55 -08:00
|
|
|
archives(androidSourcesJar)
|
|
|
|
archives(androidJavadocJar)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
version = VERSION_NAME
|
|
|
|
group = GROUP
|
|
|
|
|
|
|
|
signing {
|
2019-02-09 10:14:55 -08:00
|
|
|
required { isReleaseBuild() && gradle.taskGraph.hasTask("uploadArchives") }
|
|
|
|
sign(configurations.archives)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uploadArchives {
|
|
|
|
configuration = configurations.archives
|
|
|
|
repositories.mavenDeployer {
|
|
|
|
beforeDeployment {
|
|
|
|
MavenDeployment deployment -> signing.signPom(deployment)
|
|
|
|
}
|
|
|
|
|
|
|
|
repository(url: getRepositoryUrl()) {
|
|
|
|
authentication(
|
|
|
|
userName: getRepositoryUsername(),
|
|
|
|
password: getRepositoryPassword())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-02-09 10:14:55 -08:00
|
|
|
configureReactNativePom(pom)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task installArchives(type: Upload) {
|
|
|
|
configuration = configurations.archives
|
|
|
|
repositories.mavenDeployer {
|
2016-02-09 08:32:49 -08:00
|
|
|
// Deploy to react-native/android, ready to publish to npm
|
2019-02-09 10:14:55 -08:00
|
|
|
repository(url: AAR_OUTPUT_URL)
|
2016-04-06 09:20:39 -07:00
|
|
|
|
2019-02-09 10:14:55 -08:00
|
|
|
configureReactNativePom(pom)
|
2015-09-14 15:35:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|