iink SDK on Device

Answered

Pod File installation error - iOS

Im my own project I try to install the MyScript pod file (pod 'MyScriptInteractiveInk-UIReferenceImplementation', :path => '../..').But its shows an error [!] No podspec found for `MyScriptInteractiveInk-UIReferenceImplementation` in `../..`.

So please help me to resolve this issue?


Best Answer

Dear Kannan,


Thank you for your project.

We have do some tests and it seems you should update your podfile to :


platform :ios, '9.1'

target 'MyScriptDoctor' do

  # Pods for MyScriptDoctor
  pod 'SwiftSignatureView'
  pod 'MyScriptInteractiveInk-UIReferenceImplementation', :path => '.'

end


Hoping this will solve your issue.


Regards,


Maël


Dear Kannan,


It looks like your podfile is on the same directory than your .podspec.


It seems you don't need to specify a path to 'MyScriptInteractiveInk-UIReferenceImplementation' in your podfile.


Can you please try :


pod 'MyScriptInteractiveInk-UIReferenceImplementation'


Regards,


Maël

I also have a .podspec file in my project:

image


My Terminal output screenshot was:

image


I'm exactly using the same code what you are give.

Now my POD FILE code was:

platform :ios, '9.1'

target 'MyScriptDoctor' do

 # Pods for MyScriptDoctor

 pod 'MyScriptInteractiveInk-UIReferenceImplementation',  :path => '../..'

end

But its exits the same issue

Dear Kannan,


Can you please try to :


1. Uncomment the line "# platform :ios, '9.0'"

2. Update the version from 9.0 to 9.1.


You can have a look at this podfile in our Github repository : https://github.com/MyScript/interactive-ink-examples-ios/blob/master/Examples/GetStartedSwift/Podfile


Let me know if this is usefull.


Regards,


Maël

image


Dear Kannan,


Can you please send me your project's folder hierarchy  ?

This way i can look at it and provide you a better answer.


Regards,


Maël

Actually I was asked that question on last Friday.But they are not reply to my query on last two days.so I open the new topic to resolve my issue.

Please help me.we need to urgently integrated MyScript  into our iOS app.If its successfully integrated , Next we are initiate the integration on android platform.

# Uncomment the next line to define a global platform for your project

# platform :ios, '9.0'


Also I tried removed that use frameworks! line.But still it exits the same issue.

My pod file code was:

target 'MyScriptDoctor' do

  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks


pod 'MyScriptInteractiveInk-UIReferenceImplementation',  :path => '../..'

  # Pods for MyScriptDoctor


  target 'MyScriptDoctorTests' do

    inherit! :search_paths

    # Pods for testing

  end


  target 'MyScriptDoctorUITests' do

    inherit! :search_paths

    # Pods for testing

  end

end


Dear Kannan,


I saw your last reply on another post.

Did you try to remove the "use_frameworks!" line ?


If no, try it first and tell me if this is usefull.


Regards,


Maël