-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Gems and remove R.swift #8
Conversation
let alert = UIAlertController(title: R.string.localizable.errorTitle(), message: message, preferredStyle: .alert) | ||
alert.addAction(UIAlertAction(title: R.string.localizable.ok(), style: .default) { [weak self] _ in | ||
let message = NSLocalizedString("video-error", comment: "") + "\n" + NSLocalizedString("contact-info", comment: "") | ||
let alert = UIAlertController(title: NSLocalizedString("error-title", comment: ""), message: message, preferredStyle: .alert) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line Length Violation: Line should be 120 characters or less: currently 131 characters (line_length)
let message = R.string.localizable.videoError() + "\n" + R.string.localizable.contactInfo() | ||
let alert = UIAlertController(title: R.string.localizable.errorTitle(), message: message, preferredStyle: .alert) | ||
alert.addAction(UIAlertAction(title: R.string.localizable.ok(), style: .default) { [weak self] _ in | ||
let message = NSLocalizedString("video-error", comment: "") + "\n" + NSLocalizedString("contact-info", comment: "") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line Length Violation: Line should be 120 characters or less: currently 121 characters (line_length)
6edb6ee
to
01569e7
Compare
Codecov Report
@@ Coverage Diff @@
## develop #8 +/- ##
============================================
- Coverage 40.74% 17.37% -23.38%
============================================
Files 49 43 -6
Lines 1885 1370 -515
Branches 28 0 -28
============================================
- Hits 768 238 -530
- Misses 1114 1132 +18
+ Partials 3 0 -3
Continue to review full report at Codecov.
|
01569e7
to
fdd1b38
Compare
It seems to be very difficult to migrate the project from Swift 3 to Swift 5 at once. One possible approach is to reduce third party dependencies and update different parts of the project separately.
This PR updates the Gems and removes the dependency of R.swift, which caused a problem in some versions of Xcode and CocoaPods.
TBD: