2017-07-07 23:25:03 +01:00
|
|
|
rootProject.name = 'Joplin'
|
2023-01-08 04:22:41 -08:00
|
|
|
include ':react-native-vector-icons'
|
|
|
|
project(':react-native-vector-icons').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vector-icons/android')
|
2020-02-09 14:51:12 +00:00
|
|
|
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
|
2017-05-06 15:37:28 +01:00
|
|
|
include ':app'
|
2022-12-27 19:37:15 +00:00
|
|
|
includeBuild('../node_modules/react-native-gradle-plugin')
|
|
|
|
if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") {
|
|
|
|
include(":ReactAndroid")
|
|
|
|
project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')
|
2023-01-08 13:39:27 +00:00
|
|
|
include(":ReactAndroid:hermes-engine")
|
|
|
|
project(":ReactAndroid:hermes-engine").projectDir = file('../node_modules/react-native/ReactAndroid/hermes-engine')
|
2022-12-27 19:37:15 +00:00
|
|
|
}
|