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

Projucer: Add some required fields to the generated AndroidManifest.xml file

This commit is contained in:
ed 2021-10-05 10:21:52 +01:00
parent f899b65315
commit 8feec44431

View file

@ -1747,6 +1747,8 @@ private:
if (! act->hasAttribute ("android:hardwareAccelerated"))
act->setAttribute ("android:hardwareAccelerated", "true"); // (using the 2D acceleration slows down openGL)
act->setAttribute ("android:exported", "true");
return act;
}
@ -1831,6 +1833,7 @@ private:
s.add ("android.permission.BLUETOOTH");
s.add ("android.permission.BLUETOOTH_ADMIN");
s.add ("android.permission.ACCESS_FINE_LOCATION");
s.add ("android.permission.ACCESS_COARSE_LOCATION");
}
if (androidExternalReadPermission.get())