1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Projucer: Update formatting

This commit is contained in:
reuk 2026-01-30 14:06:14 +00:00
parent 4fafc4ca18
commit 15d0d170e6
No known key found for this signature in database

View file

@ -701,30 +701,30 @@ private:
// NDK 26 is required for ANDROID_WEAK_API_DEFS, which is in turn required for weak-linking AFontMatcher
mo << "def ndkVersionString = \"28.1.13356709\"" << newLine << newLine;
mo << "android {" << newLine;
mo << " compileSdk " << static_cast<int> (androidTargetSDK.get()) << newLine;
mo << " ndkVersion ndkVersionString" << newLine;
mo << " namespace " << project.getBundleIdentifierString().toLowerCase().quoted() << newLine;
mo << " externalNativeBuild {" << newLine;
mo << " cmake {" << newLine;
mo << " path \"CMakeLists.txt\"" << newLine;
mo << " version \"3.22.1\"" << newLine;
mo << " }" << newLine;
mo << " }" << newLine;
mo << "android {" << newLine;
mo << " compileSdk " << static_cast<int> (androidTargetSDK.get()) << newLine;
mo << " ndkVersion ndkVersionString" << newLine;
mo << " namespace " << project.getBundleIdentifierString().toLowerCase().quoted() << newLine;
mo << " externalNativeBuild {" << newLine;
mo << " cmake {" << newLine;
mo << " path \"CMakeLists.txt\"" << newLine;
mo << " version \"3.22.1\"" << newLine;
mo << " }" << newLine;
mo << " }" << newLine;
mo << getAndroidSigningConfig() << newLine;
mo << getAndroidDefaultConfig() << newLine;
mo << getAndroidBuildTypes() << newLine;
mo << getAndroidProductFlavours() << newLine;
mo << getAndroidVariantFilter() << newLine;
mo << getAndroidSigningConfig() << newLine;
mo << getAndroidDefaultConfig() << newLine;
mo << getAndroidBuildTypes() << newLine;
mo << getAndroidProductFlavours() << newLine;
mo << getAndroidVariantFilter() << newLine;
mo << getAndroidJavaSourceSets (modules) << newLine;
mo << getAndroidRepositories() << newLine;
mo << getAndroidDependencies() << newLine;
mo << androidCustomAppBuildGradleContent.get().toString() << newLine;
mo << getApplyPlugins() << newLine;
mo << getAndroidJavaSourceSets (modules) << newLine;
mo << getAndroidRepositories() << newLine;
mo << getAndroidDependencies() << newLine;
mo << androidCustomAppBuildGradleContent.get().toString() << newLine;
mo << getApplyPlugins() << newLine;
mo << "}" << newLine << newLine;
mo << "}" << newLine << newLine;
return mo.toString();
}