-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mirego-base-setup 1 of X: Base setup (#46)
* Trikot + Kword + Koin/KSP * oups * Fix CI * Fix CI by ignoring POST_NOTIFICATIONS warning for picasso * Fix CI by ignoring POST_NOTIFICATIONS warning for picasso * Fix CI by ignoring POST_NOTIFICATIONS warning for picasso --------- Co-authored-by: Steven de Tilly <[email protected]>
- Loading branch information
1 parent
0d56f4b
commit 652fc2e
Showing
16 changed files
with
219 additions
and
22 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<lint> | ||
<issue id="NotificationPermission"> | ||
<ignore regexp="com.squareup.picasso.RemoteViewsAction.NotificationAction" /> | ||
</issue> | ||
</lint> |
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.