Evgeny Cherpak

Results 20 comments of Evgeny Cherpak

added this to my Podfile post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'DD_LEGACY_MACROS=1'] end end end or you can just define it on your project:...

added this to my Podfile post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'DD_LEGACY_MACROS=1'] end end end or you can just define it on your project:...

added this to my Podfile post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', 'DD_LEGACY_MACROS=1'] end end end or you can just define it on your project:...

✅ fastlane environment ✅ ### Stack | Key | Value | | --------------------------- | ------------------------------------------------------- | | OS | 12.1 | | Ruby | 3.0.2 | | Bundler? | false...

Subclassing and disabling autorotation and landscape like this: ``` @implementation DriveOnboardingViewController - (UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; } -(UIInterfaceOrientationMask)supportedInterfaceOrientations { return UIInterfaceOrientationMaskPortrait; } - (BOOL)shouldAutorotate { return NO; } @end ```...

I hacked something together here to upload 6.7 inch screenshots https://github.com/cherpake/fastlane

Earliest version my app will run on is Windows 7 - which should have TLS1.2 support.

I have been investigating touchpad too. Having some trouble to fully mimic iOS remote - especially swipe up to close apps. Other than that seems like I managed to make...

No, not public - it's iOS app to control Mac/PC and Apple TV, and I'm just adding touchpad for Apple TV to it - so not even released. I checked...