-
Notifications
You must be signed in to change notification settings - Fork 3
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
Mirego-base-setup 1 of X: Base setup #46
Merged
Merged
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d9de172
Trikot + Kword + Koin/KSP
OlivierPineau 8e32190
oups
OlivierPineau 0eda86b
Merge main
OlivierPineau b8302e2
Fix CI
sdetilly 85171e8
Fix CI by ignoring POST_NOTIFICATIONS warning for picasso
sdetilly 7f549e2
Fix CI by ignoring POST_NOTIFICATIONS warning for picasso
sdetilly eb647da
Fix CI by ignoring POST_NOTIFICATIONS warning for picasso
sdetilly File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
require_relative './podspec_versions.rb' | ||
install! 'cocoapods', :warn_for_unused_master_specs_repo => false | ||
$deploymentTarget = '15.0' | ||
platform :ios, $deploymentTarget | ||
inhibit_all_warnings! | ||
|
||
target 'iosApp' do | ||
use_frameworks! | ||
platform :ios, '15.0' | ||
pod 'Shared', :path => '../shared' | ||
platform :ios, $deploymentTarget | ||
pod 'Shared', :path => '../shared' | ||
|
||
ENV['TRIKOT_FRAMEWORK_NAME']='Shared' | ||
properties = load_properties('../gradle/libs.versions.toml') | ||
pod 'Trikot/viewmodels.declarative.SwiftUI.flow', :git => '[email protected]:mirego/trikot.git', :tag => properties['trikot'] | ||
pod 'Trikot/kword', :git => '[email protected]:mirego/trikot.git', :tag => properties['trikot'] | ||
|
||
pod 'SwiftLint' | ||
pod 'SwiftLint' | ||
end | ||
|
||
post_install do |installer| | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,49 @@ | ||
PODS: | ||
- Kingfisher (7.8.1) | ||
- Shared (0.1) | ||
- SwiftLint (0.52.4) | ||
- SwiftLint (0.53.0) | ||
- SwiftUIIntrospect (1.1.0) | ||
- Trikot/kword (5.2.0): | ||
- Shared | ||
- Trikot/viewmodels.declarative.flow (5.2.0): | ||
- Shared | ||
- Trikot/viewmodels.declarative.SwiftUI.flow (5.2.0): | ||
- Kingfisher (~> 7.8.1) | ||
- Shared | ||
- SwiftUIIntrospect (~> 1.0) | ||
- Trikot/viewmodels.declarative.flow | ||
|
||
DEPENDENCIES: | ||
- Shared (from `../shared`) | ||
- SwiftLint | ||
- "Trikot/kword (from `[email protected]:mirego/trikot.git`, tag `5.2.0`)" | ||
- "Trikot/viewmodels.declarative.SwiftUI.flow (from `[email protected]:mirego/trikot.git`, tag `5.2.0`)" | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- Kingfisher | ||
- SwiftLint | ||
- SwiftUIIntrospect | ||
|
||
EXTERNAL SOURCES: | ||
Shared: | ||
:path: "../shared" | ||
Trikot: | ||
:git: "[email protected]:mirego/trikot.git" | ||
:tag: 5.2.0 | ||
|
||
CHECKOUT OPTIONS: | ||
Trikot: | ||
:git: "[email protected]:mirego/trikot.git" | ||
:tag: 5.2.0 | ||
|
||
SPEC CHECKSUMS: | ||
Shared: 9cee99d7ec6f327294a149403bec06a18fc5db29 | ||
SwiftLint: 1cc5cd61ba9bacb2194e340aeb47a2a37fda00b3 | ||
Kingfisher: 63f677311d36a3473f6b978584f8a3845d023dc5 | ||
Shared: 185e58fd174d1d4b955d7581bc1bacb9810272fa | ||
SwiftLint: 5ce4d6a8ff83f1b5fd5ad5dbf30965d35af65e44 | ||
SwiftUIIntrospect: 53b6a16734c822804ff82c35d9073d8d8edfb085 | ||
Trikot: ca201c8ae67ff21f35a60a0bda6c600fbe51b282 | ||
|
||
PODFILE CHECKSUM: 83ebf5d7b61ce65029f18160027c7392430ee27f | ||
PODFILE CHECKSUM: b62596630d9100fb9a2c6dce86f50d0bc9944b74 | ||
|
||
COCOAPODS: 1.13.0 |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
def load_properties(properties_filename) | ||
properties = {} | ||
File.open(properties_filename, 'r') do |properties_file| | ||
properties_file.read.each_line do |line| | ||
line.strip! | ||
if (line[0] != ?# and line[0] != ?=) | ||
i = line.index('=') | ||
if (i) | ||
properties[line[0..i - 1].strip] = line[i + 1..-1].strip.delete('\"') | ||
else | ||
properties[line] = '' | ||
end | ||
end | ||
end | ||
end | ||
properties | ||
end |
This file contains 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
This file contains 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
C'est un big jump, ya tu une raison?
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.
Les nouveaux projets commence en général avec minSdk 28. Ce qui représente 86.4% des appareils. De toute façon, ça se change très facilement après l'import du template