Skip to content

Commit 8900e91

Browse files
ShwnCndnShwnCndn
ShwnCndn
authored and
ShwnCndn
committed
setup native application
1 parent 9ceee06 commit 8900e91

File tree

14 files changed

+613
-47
lines changed

14 files changed

+613
-47
lines changed

config/config.exs

+2
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,5 @@ config :phoenix, :json_library, Jason
6262
# Import environment specific config. This must remain at the bottom
6363
# of this file so it overrides the configuration defined above.
6464
import_config "#{config_env()}.exs"
65+
66+
import_config "native.exs"

config/native.exs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This file is responsible for configuring LiveView Native.
2+
# It is auto-generated when running `mix lvn.install`.
3+
import Config
4+
5+
config :live_view_native, plugins: [LiveViewNativeSwiftUi]

mix.exs

+5-3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ defmodule ElixirNewbie.MixProject do
3333
defp deps do
3434
[
3535
# Phoenix Deps
36-
{:phoenix, "~> 1.7.0-rc.0", override: true},
36+
{:phoenix, "~> 1.7"},
3737
{:phoenix_ecto, "~> 4.4"},
3838
{:ecto_sql, "~> 3.6"},
3939
{:postgrex, ">= 0.0.0"},
4040
{:phoenix_html, "~> 3.0"},
4141
{:phoenix_live_reload, "~> 1.2", only: :dev},
42-
{:phoenix_live_view, "~> 0.18.3"},
42+
{:phoenix_live_view, "~> 0.18"},
4343
{:heroicons, "~> 0.5"},
4444
{:floki, ">= 0.30.0", only: :test},
4545
{:phoenix_live_dashboard, "~> 0.7.2"},
@@ -61,7 +61,9 @@ defmodule ElixirNewbie.MixProject do
6161
{:httpoison, "~> 1.8"},
6262
{:dialyxir, "~> 1.2", only: [:dev], runtime: false},
6363
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
64-
{:wallaby, "~> 0.30.0", runtime: false, only: :test}
64+
{:wallaby, "~> 0.30.0", runtime: false, only: :test},
65+
{:live_view_native, "~> 0.1"},
66+
{:live_view_native_swift_ui, "~> 0.1"}
6567
]
6668
end
6769

mix.lock

+51-44
Large diffs are not rendered by default.
+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## User settings
6+
xcuserdata/
7+
8+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9+
*.xcscmblueprint
10+
*.xccheckout
11+
12+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13+
build/
14+
DerivedData/
15+
*.moved-aside
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
28+
## App packaging
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
## Playgrounds
34+
timeline.xctimeline
35+
playground.xcworkspace
36+
37+
# Swift Package Manager
38+
#
39+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
40+
# Packages/
41+
# Package.pins
42+
# Package.resolved
43+
# *.xcodeproj
44+
#
45+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
46+
# hence it is not needed unless you have added a package configuration file to your project
47+
# .swiftpm
48+
49+
.build/
50+
51+
# CocoaPods
52+
#
53+
# We recommend against adding the Pods directory to your .gitignore. However
54+
# you should judge for yourself, the pros and cons are mentioned at:
55+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
56+
#
57+
# Pods/
58+
#
59+
# Add this line if you want to avoid checking in source code from the Xcode workspace
60+
# *.xcworkspace
61+
62+
# Carthage
63+
#
64+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
65+
# Carthage/Checkouts
66+
67+
Carthage/Build/
68+
69+
# Accio dependency management
70+
Dependencies/
71+
.accio/
72+
73+
# fastlane
74+
#
75+
# It is recommended to not store the screenshots in the git repo.
76+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
77+
# For more information about the recommended setup visit:
78+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
79+
80+
fastlane/report.xml
81+
fastlane/Preview.html
82+
fastlane/screenshots/**/*.png
83+
fastlane/test_output
84+
85+
# Code Injection
86+
#
87+
# After new code Injection tools there's a generated folder /iOSInjectionProject
88+
# https://github.com/johnno1962/injectionforxcode
89+
90+
iOSInjectionProject/
91+
92+
# Misc OS file
93+
.DS_Store

0 commit comments

Comments
 (0)