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

Projucer: Request Bluetooth permission on Android for PIP projects

Prior to 26a23dfc the Android project exporter requested the Bluetooth
permission by default, and some PIPs depended on this behaviour.
This commit is contained in:
attila 2022-12-19 16:38:37 +01:00
parent 58051170c4
commit b913528d11

View file

@ -265,6 +265,9 @@ ValueTree PIPGenerator::createExporterChild (const Identifier& exporterIdentifie
}
}
if (exporterIdentifier.toString() == AndroidProjectExporter::getValueTreeTypeName())
exporter.setProperty (Ids::androidBluetoothNeeded, true, nullptr);
{
ValueTree configs (Ids::CONFIGURATIONS);