Marcus Tillmanns

Results 12 comments of Marcus Tillmanns

Thanks for the report. I've added a Launchscreen and App Icon here: https://github.com/AshampooSystems/boden/commit/37b4ced7125726b687925caef3e7b92380a3afe8

It looks to me like there are extra spaces in your command line: ```python boden . py ...``` Removing them should fix your issue: ```python boden.py open -p android -t...

Hi, You can run builds on the command line if you have android studio installed ( no need to open it here ). `./boden build -p android -t bodendemo` This...

Hi @mcraveiro, Yes its possible to use plain cmake. If you run the `boden` tool with the debug output ( `-d` ), it will print out the cmake arguments it...

Generating .apks using make is on our Todo list, but not with a high priority at the moment. Its not just generating the apk package, but also implementing all the...

We are happy about any and all feedback! Hope you'll enjoy Boden, please don't hesitate to let us know what we can improve.

Support for non-C++ languages is something we want to do in the future, but we don't have a specific roadmap for it yet.

Sorry for the late reply, I missed this ticket. We have a similar mechanism in "boden/cmake/ios.cmake". In your cmake file call: ```ios_setup_code_signing(MyTarget)``` ( `ios_configure_app_info(...)` will also call `ios_setup_code_signing` ) This...

#1586 Fixes the initial cmake problem for for me. When I enable all SOL2_EXAMPLES, SOL2_INTEROP_EXAMPLES, SOL2_DYNAMIC_LOADING_EXAMPLES I get the following error during building: ``` [279/325 84% :: 19.263] Performing update...

The actual issue from what I can tell is that in https://github.com/Danielhiversen/pyTibber/blob/35dcd185d009b213d6aa46fa4a1a863e5237246d/tibber/tibber_home.py#L484-L487 the logic is wrong if`hasPreviousPage` is `false`. So instead of getting previous data, it just gets the same...