Skip to content

Commit

Permalink
chore: init ios migration
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Jul 23, 2024
1 parent d1de012 commit 2e8deeb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 52;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand All @@ -16,6 +16,7 @@
504EC30D1FED79650016851F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30B1FED79650016851F /* Main.storyboard */; };
504EC30F1FED79650016851F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 504EC30E1FED79650016851F /* Assets.xcassets */; };
504EC3121FED79650016851F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 504EC3101FED79650016851F /* LaunchScreen.storyboard */; };
77FC92452C4FABC500C7ACEC /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77FC92442C4FABC500C7ACEC /* ViewController.swift */; };
885F55E825EE224200D85A88 /* SaplingNative.m in Sources */ = {isa = PBXBuildFile; fileRef = 885F55E725EE224200D85A88 /* SaplingNative.m */; };
885F55EB25EE226300D85A88 /* SaplingNative.swift in Sources */ = {isa = PBXBuildFile; fileRef = 885F55EA25EE226300D85A88 /* SaplingNative.swift */; };
888556902721A9EC009A831D /* public in Resources */ = {isa = PBXBuildFile; fileRef = 8885568F2721A9EC009A831D /* public */; };
Expand Down Expand Up @@ -64,6 +65,7 @@
504EC30E1FED79650016851F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
504EC3111FED79650016851F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
504EC3131FED79650016851F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
77FC92442C4FABC500C7ACEC /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
885F55E725EE224200D85A88 /* SaplingNative.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SaplingNative.m; sourceTree = "<group>"; };
885F55EA25EE226300D85A88 /* SaplingNative.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SaplingNative.swift; sourceTree = "<group>"; };
8885568F2721A9EC009A831D /* public */ = {isa = PBXFileReference; lastKnownFileType = folder; path = public; sourceTree = "<group>"; };
Expand Down Expand Up @@ -130,6 +132,7 @@
504EC2FB1FED79650016851F = {
isa = PBXGroup;
children = (
77FC92442C4FABC500C7ACEC /* ViewController.swift */,
504EC3061FED79650016851F /* App */,
504EC3051FED79650016851F /* Products */,
7F8756D8B27F46E3366F6CEA /* Pods */,
Expand Down Expand Up @@ -431,6 +434,7 @@
88F9F15623D06A76008351D0 /* CameraPreview.m in Sources */,
A33BA9E528D9C4EF00BD8015 /* JS.swift in Sources */,
88AE2EF523D5DC5100428560 /* LocalAuthentication.swift in Sources */,
77FC92452C4FABC500C7ACEC /* ViewController.swift in Sources */,
A357ED09299BD8EA00EDCA39 /* Filesystem.swift in Sources */,
A3CE61BE2993DF43009216A2 /* ModuleManifest.swift in Sources */,
504EC3081FED79650016851F /* AppDelegate.swift in Sources */,
Expand Down
29 changes: 29 additions & 0 deletions ios/App/ViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
//
// ViewController.swift
// App
//
// Created by Isacco on 23.07.2024.
//

import UIKit

class ViewController: UIViewController {

override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
}


/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/

}

0 comments on commit 2e8deeb

Please sign in to comment.