-
Notifications
You must be signed in to change notification settings - Fork 135
/
settings.gradle
49 lines (43 loc) · 1.54 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
43
44
45
46
47
48
49
pluginManagement {
repositories {
google()
exclusiveContent {
forRepository {
maven {
url = uri("https://a8c-libs.s3.amazonaws.com/android")
}
}
filter {
includeGroup "com.automattic.android"
includeGroup "com.automattic.android.measure-builds"
}
}
gradlePluginPortal()
}
}
plugins {
id 'com.gradle.enterprise' version '3.17.2'
}
rootProject.name = 'WCAndroid'
include ':quicklogin'
include ':libs:commons'
include ':libs:cardreader'
include ':libs:iap'
include ':WooCommerce'
gradle.ext.fluxCBinaryPath = "org.wordpress:fluxc"
gradle.ext.fluxCWooCommercePluginBinaryPath = "org.wordpress.fluxc.plugins:woocommerce"
gradle.ext.loginFlowBinaryPath = "org.wordpress:login"
gradle.ext.mediaPickerBinaryPath = "org.wordpress:mediapicker"
gradle.ext.mediaPickerDomainBinaryPath = "org.wordpress.mediapicker:domain"
gradle.ext.mediaPickerSourceCameraBinaryPath = "org.wordpress.mediapicker:source-camera"
gradle.ext.mediaPickerSourceDeviceBinaryPath = "org.wordpress.mediapicker:source-device"
gradle.ext.mediaPickerSourceGifBinaryPath = "org.wordpress.mediapicker:source-gif"
gradle.ext.mediaPickerSourceWordPressBinaryPath = "org.wordpress.mediapicker:source-wordpress"
gradle.ext {
compileSdkVersion = 34
targetSdkVersion = 34
minSdkVersion = 26
}
apply from: './config/gradle/include_builds.gradle'
apply from: './config/gradle/gradle_build_cache.gradle'
include ':WooCommerce-Wear'