rogerluan / arkana

Use dotenv files for Android and iOS projects.
BSD 2-Clause "Simplified" License
362 stars 18 forks source link

Fix Swift compilation issue when using Bool secrets #22

Closed rogerluan closed 1 year ago

rogerluan commented 1 year ago

Description

Prior to this PR, if you had an env var of a bool type (i.e. its value is "false" or "true"), then it would generate Bool swift types but it wouldn't compile. This PR fixes this and add tests to cover this case.