2013-10-10 22:52:24 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2019-03-18 20:59:21 +01:00
|
|
|
google()
|
2019-05-31 06:26:14 +02:00
|
|
|
mavenCentral()
|
2023-08-17 15:04:13 +02:00
|
|
|
if (project.hasProperty('huawei')) maven {
|
|
|
|
url 'https://developer.huawei.com/repo/'
|
|
|
|
content {
|
|
|
|
includeGroup 'com.huawei.agconnect'
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 22:52:24 +02:00
|
|
|
}
|
2023-08-15 06:21:21 +02:00
|
|
|
|
2013-10-10 22:52:24 +02:00
|
|
|
dependencies {
|
2022-12-19 01:29:05 +01:00
|
|
|
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
|
2020-11-24 05:22:02 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
2023-04-19 15:07:36 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
|
2022-12-19 01:29:05 +01:00
|
|
|
classpath "com.google.gms:google-services:$googleServicesVersion"
|
2023-06-28 03:04:48 +02:00
|
|
|
classpath "com.squareup:javapoet:1.13.0"
|
2023-04-19 15:07:36 +02:00
|
|
|
classpath "com.google.dagger:hilt-android-gradle-plugin:$daggerVersion"
|
2023-08-15 11:12:49 +02:00
|
|
|
if (project.hasProperty('huawei')) classpath 'com.huawei.agconnect:agcp:1.9.1.300'
|
2013-10-10 22:52:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-04 14:40:48 +02:00
|
|
|
plugins{
|
|
|
|
id("com.google.dagger.hilt.android") version "2.44" apply false
|
|
|
|
}
|
|
|
|
|
2020-11-24 03:10:39 +01:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-05-18 06:45:37 +02:00
|
|
|
google()
|
2021-05-18 06:18:16 +02:00
|
|
|
mavenCentral()
|
2020-11-24 03:10:39 +01:00
|
|
|
maven {
|
|
|
|
url "https://raw.github.com/signalapp/maven/master/photoview/releases/"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "com\\.github\\.chrisbanes.*"
|
2019-03-28 21:21:57 +01:00
|
|
|
}
|
|
|
|
}
|
2020-11-24 03:10:39 +01:00
|
|
|
maven {
|
|
|
|
url "https://raw.github.com/signalapp/maven/master/shortcutbadger/releases/"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "me\\.leolin.*"
|
|
|
|
}
|
2015-01-12 05:27:34 +01:00
|
|
|
}
|
2020-11-24 03:10:39 +01:00
|
|
|
maven {
|
|
|
|
url "https://raw.github.com/signalapp/maven/master/circular-progress-button/releases/"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "com\\.github\\.dmytrodanylyk\\.circular-progress-button\\.*"
|
|
|
|
}
|
2015-09-04 01:31:26 +02:00
|
|
|
}
|
2020-11-24 03:10:39 +01:00
|
|
|
maven {
|
|
|
|
url "https://raw.github.com/signalapp/maven/master/sqlcipher/release/"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "org\\.signal.*"
|
|
|
|
}
|
2019-03-11 20:40:26 +01:00
|
|
|
}
|
2021-05-18 07:03:17 +02:00
|
|
|
jcenter()
|
|
|
|
maven { url "https://jitpack.io" }
|
2023-08-17 15:04:13 +02:00
|
|
|
if (project.hasProperty('huawei')) maven {
|
|
|
|
url 'https://developer.huawei.com/repo/'
|
|
|
|
content {
|
|
|
|
includeGroup 'com.huawei.android.hms'
|
|
|
|
includeGroup 'com.huawei.agconnect'
|
|
|
|
includeGroup 'com.huawei.hmf'
|
|
|
|
includeGroup 'com.huawei.hms'
|
|
|
|
}
|
|
|
|
}
|
2020-11-24 05:22:02 +01:00
|
|
|
}
|
2021-05-18 06:18:16 +02:00
|
|
|
|
|
|
|
project.ext {
|
2021-07-01 09:06:42 +02:00
|
|
|
androidMinimumSdkVersion = 23
|
2023-10-04 06:17:27 +02:00
|
|
|
androidTargetSdkVersion = 34
|
|
|
|
androidCompileSdkVersion = 34
|
2021-05-18 06:18:16 +02:00
|
|
|
}
|
2020-11-24 03:10:39 +01:00
|
|
|
}
|