From 2cfc9d26c166413ede88ca2e926215328e873b88 Mon Sep 17 00:00:00 2001 From: pokkst Date: Sun, 18 Sep 2022 01:39:59 -0500 Subject: [PATCH] Change some build settings --- .gitignore | 2 +- app/build.gradle | 10 +++++----- build.gradle | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 679ff4d..5879a5a 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,4 @@ /app/alphaStagenet /app/prodStagenet /app/.cxx -/monerujo.id +/mynero.id diff --git a/app/build.gradle b/app/build.gradle index eec6a4f..c334305 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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] } diff --git a/build.gradle b/build.gradle index 26dab65..91380e1 100644 --- a/build.gradle +++ b/build.gradle @@ -23,5 +23,5 @@ task clean(type: Delete) { } ext { - apkName = 'monerujo' + apkName = 'mynero' }