Skip to content

Instantly share code, notes, and snippets.

@baybatu
Last active April 26, 2021 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save baybatu/3ae3145cf500e5fccbd50a5ca6342158 to your computer and use it in GitHub Desktop.
Save baybatu/3ae3145cf500e5fccbd50a5ca6342158 to your computer and use it in GitHub Desktop.
use local ios pod on a demo project

harray-ios-sdk projesini local'deki demo bir ios projesinde kullanabilmek icin adimlar:

  • localde bi ios projesi olustur (orn: batuiostest)
  • Kullanacagin modulun (harray-ios-sdk) kaynak kodlarini bu projenin icine kopyala
  • Ana dizinde Podfile olustur (ruby kodu icerecek) ve sunu koy:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'batuiostest' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!
    pod 'Xennio', :path => '/Users/baybatu/workspace/batuiostest/harray-ios-sdk'
end
  • terminalde pod install de.

Swift tarafinda kullanacagin yerde import Xennio deyip kullanabilirsin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment