Open-GD / OpenGD

Open source implementation of Geometry Dash powered by a fork of cocos2dx 4.0.
GNU General Public License v3.0
182 stars 28 forks source link

Fix build issues and package name for Android #51

Closed ghost closed 1 year ago

ghost commented 1 year ago

This reverts the package name back to com.opengdteam.opengd due to the new one being invalid for not having at least one '.' (dot) character.

This fixes the issue with the forward declaration of IconType, which was causing compiler errors, by making it an enum class.

This replaces the usage of std::ranges::find with std::find in GameObject::createFromString due to the former being unavailable in the latest release of the NDK (r25).

This fixes an issue with widescreen devices that causes the game to be "more zoomed in".

iAndyHD3 commented 1 year ago

oh wow thanks a lot

SergeyMC9730 commented 1 year ago

Nice job!