Files
status-react/android/settings.gradle
T

22 lines
1.2 KiB
Groovy
Raw Normal View History

2019-09-03 12:51:53 +02:00
pluginManagement {
2021-08-30 19:51:19 -03:00
include ':react-native-share'
project(':react-native-share').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-share/android')
2019-09-03 12:51:53 +02:00
repositories {
mavenLocal() // Let's prioritize local Maven repos so that Nix can provide them offline
gradlePluginPortal()
}
}
2016-05-19 18:32:38 +02:00
rootProject.name = 'StatusIm'
2019-08-06 18:16:51 +02:00
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
include ':react-native-nfc-manager'
project(':react-native-nfc-manager').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-nfc-manager/android')
2016-02-23 01:04:42 +03:00
include ':app'
2016-06-09 12:49:02 +03:00
include ':react-native-status'
2016-09-07 20:35:04 +03:00
project(':react-native-status').projectDir = new File(rootProject.projectDir, '../modules/react-native-status/android')
2018-12-04 16:41:34 +03:00
include ':react-native-status-keycard'
project(':react-native-status-keycard').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-status-keycard/android')
include ':react-native-blur'
project(':react-native-blur').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/blur/android')
2023-12-11 21:22:23 +05:30
includeBuild('../node_modules/@react-native/gradle-plugin')