An advanced Ethereum mobile wallet
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
alpha-wallet-android/lib/build.gradle

23 lines
628 B

plugins {
id 'java-library'
}
dependencies {
implementation files('../app/libs/abi-4.9.8.jar')
implementation files('../app/libs/core-4.9.8.jar')
implementation files('../app/libs/crypto-4.9.8.jar')
implementation files('../app/libs/utils-4.9.8.jar')
testImplementation libs.junit
implementation libs.bouncycastle.bcprov.jdk15on
// https://mvnrepository.com/artifact/com.github.cliftonlabs/json-simple
implementation libs.json.simple
// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation libs.gson
}
sourceCompatibility = "17"
targetCompatibility = "17"