forked from tari-project/wallet-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (32 loc) · 1.16 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
buildscript {
ext.agp_version = '7.4.2' // TODO update to 8.* could lead to problems with AIDL classes
ext.kotlin_version = '1.9.23'
ext.lifecycle_version = '2.6.2'
ext.coroutines_version = '1.8.0'
// build & version
ext.buildNumber = 311
ext.versionNumber = "0.28.0"
// JNI libs
ext.libwalletHostURL = "https://github.com/tari-project/tari/releases/download/"
ext.libwalletVersion = "v1.7.0-rc.1"
ext.libwalletMinValidVersion = "v1.4.1-rc.0"
ext.libwalletx64A = "libminotari_wallet_ffi.android_x86_64.a"
ext.libwalletArmA = "libminotari_wallet_ffi.android_aarch64.a"
ext.libwalletHeader = "libminotari_wallet_ffi.h"
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$agp_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.sentry:sentry-android-gradle-plugin:3.14.0"
}
}
plugins {
id "de.undercouch.download" version "4.1.0"
id "com.google.devtools.ksp" version '1.9.23-1.0.19' apply false
}
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}