Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
249 changes: 249 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions iosApp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
*.moved-aside
DerivedData/
*.hmap
*.ipa
*.xcuserstate
*.xcscmblueprint

# CocoaPods
Pods/
*.xcworkspace
Podfile.lock

# Carthage
Carthage/Build/

# Swift Package Manager
.build/
.swiftpm/

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

# Code Injection
iOSInjectionProject/

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
51 changes: 51 additions & 0 deletions iosApp/.swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
disabled_rules:
- trailing_whitespace
- line_length
- file_length
- type_body_length
- function_body_length

opt_in_rules:
- empty_count
- empty_string
- closure_spacing
- contains_over_first_not_nil
- discouraged_object_literal
- explicit_init
- first_where
- implicit_return
- joined_default_parameter
- modifier_order
- overridden_super_call
- private_action
- private_outlet
- redundant_nil_coalescing
- sorted_first_last
- toggle_bool
- unneeded_parentheses_in_closure_argument

included:
- iosApp

excluded:
- Pods
- iosAppTests

identifier_name:
min_length: 1
max_length: 60
excluded:
- id
- i
- x
- y
- r
- g
- b
- a

type_name:
min_length: 3
max_length: 60

reporter: "xcode"
17 changes: 17 additions & 0 deletions iosApp/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
use_frameworks!
platform :ios, '16.0'

target 'iosApp' do
pod 'shared', :path => '../shared'
end

post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
# Link sqlite3 for SQLDelight
config.build_settings['OTHER_LDFLAGS'] ||= ['$(inherited)']
config.build_settings['OTHER_LDFLAGS'] << '-lsqlite3'
end
end
end
Loading