Summary: Bumping Gradle to 8.9 and NDK to 27.1.12297006 in prep to build native libraries with 16KB page size support See: - Changelog r27: https://github.com/android/ndk/wiki/Changelog-r27 - 16KB page sizes: https://developer.android.com/guide/practices/page-sizes Changelog: [Android][Updated] - Bump Gradle to 8.9, AGP to 8.7.1 and NDK to 27 Reviewed By: cortinico Differential Revision: D64381441 fbshipit-source-id: 5e4236c166568a3990deabfd628f0f34e52ea855
44 lines
1.0 KiB
Groovy
44 lines
1.0 KiB
Groovy
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
plugins {
|
|
id("com.android.library") version "8.7.1" apply false
|
|
id("com.android.application") version "8.7.1" apply false
|
|
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
group = "com.facebook.yoga"
|
|
|
|
if (project.hasProperty("USE_SNAPSHOT") && project.property("USE_SNAPSHOT").toBoolean()) {
|
|
version = getProperty("VERSION_NAME") + "-SNAPSHOT"
|
|
} else {
|
|
version = getProperty("VERSION_NAME")
|
|
}
|
|
|
|
def sonatypeUsername = findProperty("SONATYPE_USERNAME")?.toString()
|
|
def sonatypePassword = findProperty("SONATYPE_PASSWORD")?.toString()
|
|
|
|
nexusPublishing {
|
|
repositories {
|
|
sonatype {
|
|
username.set(sonatypeUsername)
|
|
password.set(sonatypePassword)
|
|
}
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|