|
|
@ -2,15 +2,22 @@ plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
|
|
|
|
def AppMinorVersion = 0
|
|
|
|
|
|
|
|
def AppBuildNumber = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
android {
|
|
|
|
compileSdk 32
|
|
|
|
compileSdk 32
|
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.xypower.frpandroid"
|
|
|
|
applicationId "com.xypower.frpandroid"
|
|
|
|
minSdk 25
|
|
|
|
minSdk 24
|
|
|
|
targetSdk 32
|
|
|
|
targetSdk 28
|
|
|
|
versionCode 2
|
|
|
|
versionCode AppVersionCode
|
|
|
|
versionName "1.1"
|
|
|
|
versionName AppVersionName
|
|
|
|
|
|
|
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
|
|
|
|
|
|
|
|
|