From 1419a28e1caace7a5459a6d3fc0a912067d055ce Mon Sep 17 00:00:00 2001 From: BlueMatthew Date: Thu, 18 Jan 2024 22:35:36 +0800 Subject: [PATCH] Update MpMaster version to 1.0.16 --- mpmaster/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mpmaster/build.gradle b/mpmaster/build.gradle index 77799ce5..4e4be786 100644 --- a/mpmaster/build.gradle +++ b/mpmaster/build.gradle @@ -4,7 +4,7 @@ plugins { def AppMajorVersion = 1 def AppMinorVersion = 0 -def AppBuildNumber = 15 +def AppBuildNumber = 16 def AppVersionName = AppMajorVersion + "." + AppMinorVersion + "." + AppBuildNumber def AppVersionCode = AppMajorVersion * 100000 + AppMinorVersion * 1000 + AppBuildNumber @@ -64,6 +64,8 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'androidx.annotation:annotation:+' + implementation 'com.linkedin.dexmaker:dexmaker:2.28.3' implementation project(path: ':common') testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3'