I'm not sure if this helps the discussion but I ended up creating a Run Script before Compilation phase in XCode that simply checks a few points. I also exclude the mentioned Carthage/.Cartfile.resolved file from my repo via my .gitignore file. Conditions the script checks:
If Carthage/Build directory exists
If the file Carthage/.Cartfile.resolved exists
If the files Cartfile.resolved and Carthage/.Cartfile.resolved don't differ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread 5Queue : com.apple.root.user-initiated-qos (concurrent) | |
#0 0x000000010f181d2b in objc_release () | |
#1 0x000000010f1831d1 in (anonymous namespace)::AutoreleasePoolPage::pop(void*) () | |
#2 0x00000001125037ce in _dispatch_root_queue_drain () | |
#3 0x0000000112503059 in _dispatch_worker_thread3 () | |
#4 0x00000001128cb4de in _pthread_wqthread () | |
#5 0x00000001128c9341 in start_wqthread () |
I'm not sure if this helps the discussion but I ended up creating a Run Script before Compilation phase in XCode that simply checks a few points. I also exclude the mentioned Carthage/.Cartfile.resolved file from my repo via my .gitignore file. Conditions the script checks:
If Carthage/Build directory exists
If the file Carthage/.Cartfile.resolved exists
If the files Cartfile.resolved and Carthage/.Cartfile.resolved don't differ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
infix operator +=! { associativity right precedence 90 } // Int32 or Int64 | |
infix operator -=! { associativity right precedence 90 } // Int32 or Int64 | |
postfix operator ++! {} // Int32 or Int64 | |
postfix operator --! {} // Int32 or Int64 | |
infix operator |=! { associativity right precedence 90 } // UInt32 | |
infix operator &=! { associativity right precedence 90 } // UInt32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ fastlane run_unit_tests | |
[13:19:04]: ------------------------------------------------- | |
[13:19:04]: --- Step: Verifying required fastlane version --- | |
[13:19:04]: ------------------------------------------------- | |
[13:19:04]: Your fastlane version 2.19.1 matches the minimum requirement of 2.19.1 ✅ | |
[13:19:04]: ------------------------------ | |
[13:19:04]: --- Step: default_platform --- | |
[13:19:04]: ------------------------------ | |
[13:19:04]: Driving the lane 'ios run_unit_tests' 🚀 | |
[13:19:04]: ------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Картинки drag&drop-ом не кидать - можно только ссылками на облако | |
2. код - pastebin/gist/etc. (разве что очень короткий кусок можно inline) | |
3. не “хантить” (limit в 1 сообщение в день) | |
4. название и иконку чата не менять |
https://codemilltech.com/stranger-in-a-strange-land-binding-objective-c-libraries-to-xamarin/ https://codemilltech.com/climbing-gumdrop-mountain-or-how-to-create-xamarin-android-bindings/
https://staging.chipsncookies.com/2016/creating-a-xamarin.ios-binding-project-for-dummies/ http://blog.samikuhmonen.fi/post/2016/08/02/adding-a-framework-to-xamarin-ios-project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
lineIndex = 0 | |
result = [] | |
with open ("contributors-raw.txt") as f: | |
for line in f.readlines(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface HPLabRepositoryRealm : NSObject <HPLabModelRepository> | |
- (instancetype)init NS_UNAVAILABLE; | |
+ (instancetype) new NS_UNAVAILABLE; | |
- (instancetype)initWithRealm:(RLMRealmBuilderBlock)realmBuilder | |
operationQueue:(dispatch_queue_t)queue | |
NS_REQUIRES_SUPER | |
NS_DESIGNATED_INITIALIZER | |
__attribute__((nonnull)); |
-
custom control for AR https://developer.xamarin.com/guides/xamarin-forms/custom-renderer/view/ http://www.goxuni.com/whitepapers/how-to-build-a-custom-control-in-xamarin-forms/
-
hourly calendar widget example https://components.xamarin.com/view/MindFusionScheduling
-
keychain wrapper plug-in