summaryrefslogtreecommitdiff
path: root/wallet/build.gradle
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-27 10:52:39 -0600
committerTorsten Grote <t@grobox.de>2023-02-22 08:33:24 -0300
commitb76b00114d92a4e547503c9c2b3416c9b164db55 (patch)
treec29c0adad6358a72c318b095933c123d55333302 /wallet/build.gradle
parent5f7e7ac2913de385bd03f0fa67974865d10188b3 (diff)
downloadtaler-android-b76b00114d92a4e547503c9c2b3416c9b164db55.tar.gz
taler-android-b76b00114d92a4e547503c9c2b3416c9b164db55.tar.bz2
taler-android-b76b00114d92a4e547503c9c2b3416c9b164db55.zip
[wallet] TalerWalletCore now pulled from Maven
Diffstat (limited to 'wallet/build.gradle')
-rw-r--r--wallet/build.gradle10
1 files changed, 3 insertions, 7 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index 22fc0c8..075cdc7 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -23,8 +23,7 @@ plugins {
id "de.undercouch.download" version "5.3.0"
}
-def walletCoreVersion = "v0.9.1"
-def walletCoreSha256 = "99fd96fb897c6954710728820369949090bff84d06728f04b29c6cb067c8f9d4"
+def qtart_version = "0.9.2-dev.1"
static def versionCodeEpoch() {
return (new Date().getTime() / 1000).toInteger()
@@ -48,9 +47,8 @@ android {
minSdkVersion 24
targetSdkVersion 33
versionCode 21
- versionName walletCoreVersion
+ versionName qtart_version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- buildConfigField "String", "WALLET_CORE_VERSION", "\"$walletCoreVersion\""
}
buildTypes {
release {
@@ -116,6 +114,7 @@ android {
dependencies {
implementation project(":taler-kotlin-android")
+ implementation "net.taler:qtart:$qtart_version@aar"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
@@ -166,9 +165,6 @@ dependencies {
testImplementation 'org.json:json:20220320'
}
-// FIXME: add download and verify tasks for .so files
-// (They should go on src/main/jniLibs/${ANDROID_ABI}/libtalerwalletcore.so)
-
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
kotlinOptions {
freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"