mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 10:42:53 +00:00
fd9e8273e1
related issue : https://github.com/status-im/status-mobile/issues/15447 This commit makes use of https://github.com/gradle/github-dependency-graph-gradle-plugin to generate deps so that we may get rid of the AWK script that parses `gradle` output to figure out `gradle` dependencies. credits to Vedran for doing initial research on this dependency generator plugin. We still miss a few dependencies and are not completely able to get rid of the hack list step just yet. I also moved `react-native-share` out of `pluginManagement ` block in `android/settings.gradle` because it does not belong there.
10 lines
241 B
Groovy
10 lines
241 B
Groovy
initscript {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
dependencies {
|
|
classpath "org.gradle:github-dependency-graph-gradle-plugin:+"
|
|
}
|
|
}
|
|
apply plugin: org.gradle.dependencygraph.simple.SimpleDependencyGraphPlugin
|