1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Projucer: Switch from deprecated compileSdkVersion to new compileSdk

This commit is contained in:
reuk 2024-06-03 13:04:06 +01:00
parent e5c32e3490
commit 15f28d71f2
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -700,7 +700,7 @@ private:
mo << "def ndkVersionString = \"26.2.11394342\"" << newLine << newLine;
mo << "android {" << newLine;
mo << " compileSdkVersion " << static_cast<int> (androidTargetSDK.get()) << newLine;
mo << " compileSdk " << static_cast<int> (androidTargetSDK.get()) << newLine;
mo << " ndkVersion ndkVersionString" << newLine;
mo << " namespace " << project.getBundleIdentifierString().toLowerCase().quoted() << newLine;
mo << " externalNativeBuild {" << newLine;