Hendrik Bugdoll

Results 61 comments of Hendrik Bugdoll

> I've tested it with an iOS 18.4 simulator [...] The navTintColor crash is fixed with your PR 👍 Thanks for testing!

> [...] and it still flickers with the code above. Oops, I left out the iOS 18 simulators by mistake. Yes, this does indeed occur under iOS 18! It's not...

Changes from initial draft: - ~~replaced undocumented `SWIFT_COMPILER_FLAGS` with `OTHER_SWIFT_FLAGS`[^1]~~ - use of JS arrow functions [^1]: https://developer.apple.com/documentation/xcode/build-settings-reference#Other-Swift-Flags

New changes: - rework: replaced key-value compiler flags overall

I ended up here because of the following warning during build process: `[WARN] .../build/iphone/Assets.xcassets:./AppIcon.appiconset/[][universal][1024x1024][][][1x][][][][][2d][appicon-Dark.png]: warning: The app icon set "AppIcon" has 2 unassigned children.` Inspecting the generated Xcode project with...

@m1ga Why removed `platforms` and `since` in https://github.com/tidev/titanium-sdk/pull/14358/commits/de1c6a8defd9231f0675610cf549cfd921223703 ?

> The linter wasn't happy with those lines in that place Oh, `platforms` and `since` are not allowed at parameter level.

Nice overview of the Android versions fragmentation: https://nfctools.net/android/versions.php

Just for comparison: - _React Native_ bumped `minSdkVersion` from `21` to `23` in 2023 (https://github.com/facebook/react-native/commit/70fcb1ebf664203ca9934fa12376cfa8a32d373b), and to `24` in 2024 (https://github.com/facebook/react-native/pull/45906/commits/8f57212a7ed5df6c29a83c9cc6877365d2b5e4a2) - _Flutter_ bumped `minSdkVersion` from `21` to `24` in...

@m1ga It took me a while to understand this monster class (`iphone/Classes/TiUITableView`) 😮‍💨 You're right, the index is built correctly. Concretely, in `updateSearchResultIndexes` the index `searchResultIndexes` is updated, which is...