Sync manager version with module version
This commit is contained in:
parent
5c14d36ecf
commit
e6b9661465
|
|
@ -13,8 +13,8 @@ android {
|
|||
applicationId "org.meowcat.edxposed.manager"
|
||||
minSdkVersion androidMinSdkVersion.toInteger()
|
||||
targetSdkVersion androidTargetSdkVersion.toInteger()
|
||||
versionCode 458010
|
||||
versionName "4.5.8.1"
|
||||
versionCode rootProject.ext.versionCode
|
||||
versionName rootProject.ext.versionName
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
|
|
|
|||
|
|
@ -101,7 +101,7 @@ public class StatusInstallerFragment extends Fragment {
|
|||
binding = StatusInstallerBinding.inflate(inflater, container, false);
|
||||
|
||||
String installedXposedVersion = Constants.getXposedVersion();
|
||||
String mAppVer = String.format("v%s (%s)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE);
|
||||
String mAppVer = String.format("%s (%s)", BuildConfig.VERSION_NAME, BuildConfig.VERSION_CODE);
|
||||
binding.manager.setText(mAppVer);
|
||||
if (installedXposedVersion != null) {
|
||||
binding.api.setText(Constants.getXposedApiVersion() + ".0");
|
||||
|
|
|
|||
Loading…
Reference in New Issue