-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (35 loc) · 1.24 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
buildscript {
// Define versions as variables for maintainability
ext.kotlin_version = '1.8.10' // Compatible with AGP 7.4.2; consider updating if using AGP 8.x
ext.pesdk_version = '10.9.0'
ext.ksp_version = '1.8.10-1.0.9'
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://artifactory.img.ly/artifactory/imgly' } // PESDK repository
}
dependencies {
// Android Gradle Plugin
classpath 'com.android.tools.build:gradle:8.6.1'
// Kotlin Gradle Plugin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// KSP Plugin
classpath "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:$ksp_version"
// PESDK Plugin
classpath "ly.img.android.pesdk:plugin:$pesdk_version"
// Google Services Plugin
classpath 'com.google.gms:google-services:4.4.2'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://artifactory.img.ly/artifactory/imgly' } // PESDK repository
maven { url 'https://jitpack.io' } // JitPack for additional dependencies
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}