|
|
@ -5,12 +5,20 @@ plugins {
|
|
|
|
// 10,00,000 major-minor-build
|
|
|
|
// 10,00,000 major-minor-build
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
def AppMinorVersion = 0
|
|
|
|
def AppMinorVersion = 0
|
|
|
|
def AppBuildNumber = 93
|
|
|
|
def AppBuildNumber = 94
|
|
|
|
|
|
|
|
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
android {
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
|
|
|
|
debug {
|
|
|
|
|
|
|
|
storeFile file('D:\\Workspace\\Github\\TermApp\\sign.jks')
|
|
|
|
|
|
|
|
storePassword 'XyMpApp'
|
|
|
|
|
|
|
|
keyAlias 'xymp'
|
|
|
|
|
|
|
|
keyPassword 'XyMpApp'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
namespace 'com.xypower.mpapp'
|
|
|
|
namespace 'com.xypower.mpapp'
|
|
|
|
compileSdk 33
|
|
|
|
compileSdk 33
|
|
|
|
|
|
|
|
|
|
|
|