-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
25 lines (24 loc) · 1.01 KB
/
build.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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
controlx2_version = "1.0.0-20241210"
pumpx2_version = "1.4.1"
use_local_pumpx2 = System.properties.getOrDefault('use_local_pumpx2', 'false') == 'true'
if (!use_local_pumpx2) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
use_local_pumpx2 = (properties.getProperty('use_local_pumpx2') ?: '') == 'true'
}
m2_repository = "${System.properties['user.home']}/.m2/repository"
compose_version = '1.3.1'
androidx_watchface_version = '1.2.0-alpha05'
}
dependencies {
classpath 'hu.supercluster:paperwork-plugin:1.2.7'
}
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}