Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to build? - Tried adding to Podfile and symbolic linkages #1

Open
SamuelMarks opened this issue Oct 16, 2019 · 0 comments
Open

Comments

@SamuelMarks
Copy link

Commands

$ git clone https://github.com/willtyler98/Launchpad-Tools
$ cd Launchpad-Tools
$ # edit Podfile until it looks like code sample below
$ pod install
$ # Add symbolic links:
$ for f in "$PWD"/Pods/CryptoSwift/Sources/CryptoSwift/*; do
    ln -s "$f" "$PWD/SQlite/SQLite/Extensions/${f##*/}";
  done
$ ln -s "$PWD"/Pods/SQlite.swift/Sources "$PWD/SQlite"

Podfile

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'Launchpad Tools' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for Launchpad Tools
  pod 'CryptoSwift', '~> 1.0'
  pod 'SQLite.swift', '~> 0.12.0'
end

Here is the output now, note that I also manually changed the signing key in xCode:
Screen Shot 2019-10-16 at 3 07 36 pm

Also I tried applying those automated recommended upgrades, the second 2 worked but the first one—conversion to Swift 5 syntax—failed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant