mirror of
https://codeberg.org/r4v3r23/mysu.git
synced 2024-11-09 23:50:02 +00:00
59755fd6cb
Fix Dockerfile scripts (new Zlib version: 1.3) Adds block counts for sync progress bar Adds option to hide Monerochan on wallet creation screen Coloring changes Update address in README.md
162 lines
No EOL
5.3 KiB
Groovy
162 lines
No EOL
5.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: "androidx.navigation.safeargs"
|
|
|
|
android {
|
|
compileSdkVersion 34
|
|
buildToolsVersion '30.0.3'
|
|
ndkVersion '17.2.4988734'
|
|
defaultConfig {
|
|
applicationId "net.mynero.wallet"
|
|
minSdkVersion 21
|
|
targetSdkVersion 34
|
|
versionCode 40500
|
|
versionName "0.4.5 'Fluorine Fermi'"
|
|
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'
|
|
}
|
|
beta {
|
|
dimension 'net'
|
|
applicationIdSuffix '.beta'
|
|
versionNameSuffix ' (beta)'
|
|
}
|
|
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()
|
|
include 'armeabi-v7a', 'arm64-v8a', 'x86_64'
|
|
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_9
|
|
targetCompatibility JavaVersion.VERSION_1_9
|
|
}
|
|
namespace 'net.mynero.wallet'
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
static def getId(name) {
|
|
Properties props = new Properties()
|
|
props.load(new FileInputStream(new File('mynero.id')))
|
|
return props[name]
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core:1.10.0'
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.preference:preference:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
implementation 'com.ncorti:slidetoact:0.9.0'
|
|
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
|
implementation "com.jakewharton.timber:timber:5.0.1"
|
|
|
|
implementation fileTree(dir: 'libs/classes', include: ['*.jar'])
|
|
|
|
implementation 'org.slf4j:slf4j-nop:1.7.36'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.1'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
|
|
implementation 'androidx.navigation:navigation-fragment:2.5.3'
|
|
implementation 'androidx.navigation:navigation-ui:2.5.3'
|
|
|
|
//noinspection GradleDependency
|
|
testImplementation "junit:junit:4.13.2"
|
|
testImplementation "org.mockito:mockito-all:1.10.19"
|
|
testImplementation "com.squareup.okhttp3:mockwebserver:4.9.3"
|
|
testImplementation 'org.json:json:20211205'
|
|
testImplementation 'net.jodah:concurrentunit:0.4.6'
|
|
}
|
|
|
|
//https://stackoverflow.com/questions/75274720/a-failure-occurred-while-executing-appcheckdebugduplicateclasses/75315276#75315276
|
|
//Not sure why this is needed since Kotlin isn't used in this project...
|
|
configurations.implementation {
|
|
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
|
|
} |