New flatten icon, migrate libslic3r_version to use gradle variables

This commit is contained in:
utkabobr
2025-03-02 20:17:33 +03:00
parent ecc9fc6f48
commit eb0e0c189b
5 changed files with 342 additions and 4 deletions
+3 -1
View File
@@ -20,7 +20,9 @@ android {
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_shared', '-DANDROID_PLATFORM=21',
'-DCMAKE_BUILD_TYPE=Release' // Disabling this results in drastically degradation of slicing times on debug builds
'-DCMAKE_BUILD_TYPE=Release', // Disabling this results in drastically degradation of slicing times on debug builds
"-DSLIC3R_VERSION=${defaultConfig.versionName}",
"-DSLIC3R_BUILD_ID=${defaultConfig.versionCode}"
}
}
}