|
|
|
@ -5,7 +5,7 @@ plugins {
|
|
|
|
|
// 10,00,000 major-minor-build
|
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
|
def AppMinorVersion = 3
|
|
|
|
|
def AppBuildNumber = 76
|
|
|
|
|
def AppBuildNumber = 77
|
|
|
|
|
|
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
|
@ -130,6 +130,7 @@ dependencies {
|
|
|
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
|
|
|
|
// implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
|
|
|
// implementation "androidx.core:core:1.10.0" // 使用最新版本
|
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
|
|
|
implementation project(path: ':common')
|
|
|
|
|