From bf70ec13d12c810ef327f37d7019ce43782100fb Mon Sep 17 00:00:00 2001 From: ZCShou <72115@163.com> Date: Sat, 18 Jun 2022 12:06:06 +0800 Subject: [PATCH] change keystore path --- app/build.gradle | 8 ++++---- GoGoGo.jks => keystore/GoGoGo.jks | Bin 2 files changed, 4 insertions(+), 4 deletions(-) rename GoGoGo.jks => keystore/GoGoGo.jks (100%) diff --git a/app/build.gradle b/app/build.gradle index 77a199d..851277a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,13 +3,13 @@ apply plugin: 'com.android.application' android { signingConfigs { debug { - storeFile file('..\\GoGoGo.jks') + storeFile file('..\\keystore\\GoGoGo.jks') storePassword 'GoGoGo' keyAlias 'GoGoKey' keyPassword 'GoGoGo' } release { - storeFile file('..\\GoGoGo.jks') + storeFile file('..\\keystore\\GoGoGo.jks') storePassword 'GoGoGo' keyAlias 'GoGoKey' keyPassword 'GoGoGo' @@ -22,8 +22,8 @@ android { applicationId "com.zcshou.gogogo" minSdkVersion 27 targetSdkVersion 32 - versionCode 1101 - versionName '1.10.1' // https://semver.org/lang/zh-CN/ + versionCode 1102 + versionName '1.10.2' // https://semver.org/lang/zh-CN/ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" resConfigs 'zh', 'zh-rCN', 'en', 'en-rUS' ndk { diff --git a/GoGoGo.jks b/keystore/GoGoGo.jks similarity index 100% rename from GoGoGo.jks rename to keystore/GoGoGo.jks