├── .gitignore ├── CreateFirebaseDynamicLinks.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── CreateFirebaseDynamicLinks.xcworkspace └── contents.xcworkspacedata ├── CreateFirebaseDynamicLinks ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DynamicLinkConfiguration.swift ├── Info.plist └── ViewController.swift ├── LICENSE ├── Podfile ├── Podfile.lock └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/.gitignore -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/AppDelegate.swift -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/DynamicLinkConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/DynamicLinkConfiguration.swift -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/Info.plist -------------------------------------------------------------------------------- /CreateFirebaseDynamicLinks/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/CreateFirebaseDynamicLinks/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/CreateFirebaseDynamicLinks/HEAD/README.md --------------------------------------------------------------------------------