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/alphaStagenet
/app/prodStagenet /app/prodStagenet
/app/.cxx /app/.cxx
/monerujo.id /mynero.id

View File

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

View File

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