Added debug build type appIdsuffix

This commit is contained in:
SSimco
2024-01-20 21:47:42 +02:00
parent 748070bc12
commit 47f4c6b79e
3 changed files with 18 additions and 1 deletions
+3 -1
View File
@@ -515,7 +515,9 @@ namespace CafeSystem
{
std::string buffer;
const char* platform = NULL;
#if BOOST_OS_WINDOWS
#if __ANDROID__
platform = "Android";
#elif BOOST_OS_WINDOWS
uint32 buildNumber;
std::string windowsVersionName = GetWindowsNamedVersion(buildNumber);
buffer = fmt::format("{} (Build {})", windowsVersionName, buildNumber);
+12
View File
@@ -18,12 +18,24 @@ android {
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
signingConfigs {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
}
}
buildTypes {
release {
signingConfig signingConfigs.release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
applicationIdSuffix ".debug"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
@@ -0,0 +1,3 @@
<resources>
<string name="app_name">Cemu debug</string>
</resources>