Cleanup of ReactAndroid/build.gradle after AGP 7.3.x bump (#34747)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/34747

Just a minor cleanup after the AGP bump.

Changelog:
[Internal] [Changed] - Cleanup of ReactAndroid/build.gradle after AGP 7.3.x bump

Reviewed By: cipolleschi

Differential Revision: D39687286

fbshipit-source-id: 441e449b51b25e4152cf1e7e7e22c7c9f1432d05
This commit is contained in:
Nicola Corti
2022-09-21 04:28:34 -07:00
committed by Facebook GitHub Bot
parent d9f93d30e0
commit 596111fabf
-9
View File
@@ -432,15 +432,6 @@ react {
}
afterEvaluate {
// Needed as some of the native sources needs to be downloaded
// before configureNdkBuildDebug could be executed.
reactNativeArchitectures().each { architecture ->
tasks.findByName("configureCMakeDebug[${architecture}]")?.configure { dependsOn(preBuild) }
tasks.findByName("configureCMakeRelWithDebInfo[${architecture}]")?.configure { dependsOn(preBuild) }
}
configureCMakeDebug.dependsOn(preBuild)
configureCMakeRelWithDebInfo.dependsOn(preBuild)
publishing {
publications {
release(MavenPublication) {