-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsettings.gradle
42 lines (40 loc) · 1.53 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
34
35
36
37
38
39
40
41
42
pluginManagement {
gradle.ext.kotlinVersion = '1.6.10'
gradle.ext.agpVersion = '8.1.0'
gradle.ext.automatticPublishToS3Version = '0.8.0'
gradle.ext.sentryVersion = '2.0.0'
plugins {
id "org.jetbrains.kotlin.android" version gradle.ext.kotlinVersion
id "org.jetbrains.kotlin.kapt" version gradle.ext.kotlinVersion
id "org.jetbrains.kotlin.plugin.serialization" version gradle.ext.kotlinVersion
id "org.jetbrains.kotlin.plugin.parcelize" version gradle.ext.kotlinVersion
id "com.android.application" version gradle.ext.agpVersion
id "com.android.library" version gradle.ext.agpVersion
id "io.sentry.android.gradle" version gradle.ext.sentryVersion
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()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
// TODO: Remove this as soon as configure starts supporting Plugin Marker Artifacts
if (requested.id.id == "com.automattic.android.configure") {
useModule("com.automattic.android:configure:0.6.5")
}
}
}
}
include ':app',
':mp4compose',
':photoeditor',
':stories'