2021-04-19 02:49:22 -06:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 30
|
|
|
|
buildToolsVersion '29.0.3'
|
|
|
|
defaultConfig {
|
2021-04-19 01:49:49 -06:00
|
|
|
applicationId "com.m2049r.wowwallet"
|
2021-04-19 02:49:22 -06:00
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 30
|
|
|
|
versionCode 1001
|
|
|
|
versionName "2.0.1 'Puginarug'"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags "-std=c++11"
|
|
|
|
arguments '-DANDROID_STL=c++_shared'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bundle {
|
|
|
|
language {
|
|
|
|
enableSplit = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flavorDimensions 'type', 'net'
|
|
|
|
productFlavors {
|
|
|
|
mainnet {
|
|
|
|
dimension 'net'
|
|
|
|
}
|
|
|
|
stagenet {
|
|
|
|
dimension 'net'
|
|
|
|
applicationIdSuffix '.stage'
|
|
|
|
versionNameSuffix ' (stage)'
|
|
|
|
}
|
|
|
|
devnet {
|
|
|
|
dimension 'net'
|
|
|
|
applicationIdSuffix '.test'
|
|
|
|
versionNameSuffix ' (test)'
|
|
|
|
}
|
|
|
|
alpha {
|
|
|
|
dimension 'type'
|
|
|
|
applicationIdSuffix '.alpha'
|
|
|
|
versionNameSuffix ' (alpha)'
|
|
|
|
}
|
|
|
|
prod {
|
|
|
|
dimension 'type'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
}
|
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.buildConfigField "String", "ID_A", "\"" + getId("ID_A") + "\""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "CMakeLists.txt"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
splits {
|
|
|
|
abi {
|
|
|
|
enable true
|
|
|
|
reset()
|
2021-04-19 01:49:49 -06:00
|
|
|
include 'arm64-v8a', 'x86_64'
|
2021-04-19 02:49:22 -06:00
|
|
|
universalApk true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Map for the version code that gives each ABI a value.
|
|
|
|
def abiCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2, 'x86': 3, 'x86_64': 4]
|
|
|
|
|
|
|
|
// Enumerate translated locales
|
|
|
|
def availableLocales = ["en"]
|
|
|
|
new File("app/src/main/res/").eachFileMatch(~/^values-.*/) { file ->
|
|
|
|
def languageTag = file.name.substring(7).replace("-r", "-")
|
|
|
|
if (languageTag != "night")
|
|
|
|
availableLocales.add(languageTag)
|
|
|
|
}
|
|
|
|
|
|
|
|
// APKs for the same app that all have the same version information.
|
|
|
|
android.applicationVariants.all { variant ->
|
|
|
|
// Update string resource: available_locales
|
|
|
|
variant.resValue("string", "available_locales", availableLocales.join(","))
|
|
|
|
// Assigns a different version code for each output APK.
|
|
|
|
variant.outputs.all {
|
|
|
|
output ->
|
|
|
|
def abiName = output.getFilter(com.android.build.OutputFile.ABI)
|
|
|
|
output.versionCodeOverride = abiCodes.get(abiName, 0) + 10 * versionCode
|
|
|
|
|
|
|
|
if (abiName == null) abiName = "universal"
|
|
|
|
def v = "${variant.versionName}".replaceFirst(" '.*' ?", "")
|
|
|
|
.replace(".", "x")
|
|
|
|
.replace("(", "-")
|
|
|
|
.replace(")", "")
|
|
|
|
outputFileName = "$rootProject.ext.apkName-" + v + "_" + abiName + ".apk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def getId(name) {
|
|
|
|
def Properties props = new Properties()
|
|
|
|
props.load(new FileInputStream(new File('monerujo.id')))
|
|
|
|
return props[name]
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'androidx.core:core:1.3.2'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.3.0'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
|
|
|
|
|
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:4.9.0"
|
|
|
|
implementation "com.burgstaller:okhttp-digest:2.1"
|
|
|
|
implementation "com.jakewharton.timber:timber:4.7.1"
|
|
|
|
|
|
|
|
implementation 'com.nulab-inc:zxcvbn:1.3.0'
|
|
|
|
|
|
|
|
implementation 'dnsjava:dnsjava:2.1.9'
|
|
|
|
implementation 'org.jitsi:dnssecjava:1.2.0'
|
|
|
|
implementation 'org.slf4j:slf4j-nop:1.7.30'
|
|
|
|
implementation 'com.github.brnunes:swipeablerecyclerview:1.0.2'
|
|
|
|
|
|
|
|
implementation 'com.github.aelstad:keccakj:1.1.0'
|
|
|
|
|
|
|
|
testImplementation "junit:junit:$rootProject.ext.junitVersion"
|
|
|
|
testImplementation "org.mockito:mockito-all:$rootProject.ext.mockitoVersion"
|
|
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:4.9.0"
|
|
|
|
testImplementation 'org.json:json:20180813'
|
|
|
|
testImplementation 'net.jodah:concurrentunit:0.4.4'
|
|
|
|
|
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.16'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.16'
|
|
|
|
}
|