-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathsettings.gradle
33 lines (29 loc) · 1.17 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pluginManagement {
gradle.ext.kotlinVersion = '1.8.0'
gradle.ext.agpVersion = '8.5.1'
gradle.ext.automatticPublishToS3Version = '0.8.0'
plugins {
id "com.android.library" version gradle.ext.agpVersion
id "org.jetbrains.kotlin.android" version gradle.ext.kotlinVersion
id "com.automattic.android.publish-to-s3" version gradle.ext.automatticPublishToS3Version
}
repositories {
maven {
url 'https://a8c-libs.s3.amazonaws.com/android'
content {
includeGroup "com.automattic.android"
includeGroup "com.automattic.android.publish-to-s3"
}
}
gradlePluginPortal()
google()
}
}
rootProject.name = '@wordpress_react-native-bridge'
include ':react-native-bridge'
if (hasProperty("willPublishReactNativeBridgeBinary")) {
assert file("./react-native-bridge/build/assets/index.android.bundle").exists() : "index.android.bundle is necessary to publish a new version!"
} else {
include ':@wordpress_react-native-aztec'
project(':@wordpress_react-native-aztec').projectDir = new File(rootProject.projectDir, '../../react-native-aztec/android')
}