|
|
@ -4,7 +4,7 @@ plugins {
|
|
|
|
|
|
|
|
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
def AppMajorVersion = 1
|
|
|
|
def AppMinorVersion = 0
|
|
|
|
def AppMinorVersion = 0
|
|
|
|
def AppBuildNumber = 7
|
|
|
|
def AppBuildNumber = 8
|
|
|
|
|
|
|
|
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
|
def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber
|
|
|
@ -80,6 +80,7 @@ dependencies {
|
|
|
|
// https://mvnrepository.com/artifact/dev.mobile/dadb
|
|
|
|
// https://mvnrepository.com/artifact/dev.mobile/dadb
|
|
|
|
implementation 'dev.mobile:dadb:1.2.7'
|
|
|
|
implementation 'dev.mobile:dadb:1.2.7'
|
|
|
|
implementation files('libs/common-release.aar')
|
|
|
|
implementation files('libs/common-release.aar')
|
|
|
|
|
|
|
|
// implementation project(path: ':dadb')
|
|
|
|
|
|
|
|
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|