Change some build settings

This commit is contained in:
pokkst 2022-09-18 01:39:59 -05:00
parent 142a42c84c
commit 2cfc9d26c1
No known key found for this signature in database
GPG Key ID: 90C2ED85E67A50FF
3 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@ -15,4 +15,4 @@
/app/alphaStagenet
/app/prodStagenet
/app/.cxx
/monerujo.id
/mynero.id

View File

@ -2,15 +2,15 @@ apply plugin: 'com.android.application'
apply plugin: "androidx.navigation.safeargs"
android {
compileSdkVersion 31
compileSdkVersion 33
buildToolsVersion '30.0.3'
ndkVersion '17.2.4988734'
defaultConfig {
applicationId "net.mynero.wallet"
minSdkVersion 21
targetSdkVersion 31
versionCode 3002
versionName "3.0.2 'Fluorine Fermi'"
targetSdkVersion 33
versionCode 100
versionName "0.1.0 'Fluorine Fermi'"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
@ -120,7 +120,7 @@ android {
static def getId(name) {
Properties props = new Properties()
props.load(new FileInputStream(new File('monerujo.id')))
props.load(new FileInputStream(new File('mynero.id')))
return props[name]
}

View File

@ -23,5 +23,5 @@ task clean(type: Delete) {
}
ext {
apkName = 'monerujo'
apkName = 'mynero'
}