[FR] Add project name to Android project settings

The Projucer does not set the project name for Android projects. If it is not given, it defaults to the project folder name. This results in multitudes of projects called “Android” which is not very helpful when you want to load a recent JUCE project in Android Studio.

Its a very simple addition to the top of settings.gradle:

rootProject.name = 'MyProjectName'
1 Like

Nice, I’ll get that added - thanks!

1 Like