Skip to content

Commit

Permalink
[#2] Dynamic 누락 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
psychehose committed Jun 10, 2023
1 parent 11237fd commit 337010d
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
6 changes: 6 additions & 0 deletions RunningRPGDynamicIsland/Assets.xcassets/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
11 changes: 11 additions & 0 deletions RunningRPGDynamicIsland/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSExtension</key>
<dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.widgetkit-extension</string>
</dict>
</dict>
</plist>
17 changes: 17 additions & 0 deletions RunningRPGDynamicIsland/RunningRPGDynamicIslandBundle.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// RunningRPGDynamicIslandBundle.swift
// RunningRPGDynamicIsland
//
// Created by min on 2023/06/10.
//

import WidgetKit
import SwiftUI

@main
struct RunningRPGDynamicIslandBundle: WidgetBundle {
var body: some Widget {
RunningRPGDynamicIsland()
RunningRPGDynamicIslandLiveActivity()
}
}

0 comments on commit 337010d

Please sign in to comment.