2

I'm Doing Login with GPP in my Application used latest GPP pod as pod 'google-plus-ios-sdk', Now I want Google App invite in my application. For That I added first pod 'Google/SignIn', Which is working fine. But once I add pod 'Google/AppInvite' it generates duplicate files error with GPP framewok.

Is there any way by with i can have both frameworks in my app i.e 'google-plus-ios-sdk' and 'Google/AppInvite'

Thanks Ashwin.

Kanjariya-IOS
  • 652
  • 1
  • 5
  • 17

1 Answers1

1

I have update my pod file as

target 'MyAppTarget' do

#pod 'google-plus-ios-sdk'
pod 'Google/AppInvite'
pod 'Google/SignIn'

end

I have commented the google-plus-ios-sdk pod file and then checked the google plus login.... and I'm logged in at GPP by getting same details like id, email etc in GIDGoogleUser object.

Thanks

Kanjariya-IOS
  • 652
  • 1
  • 5
  • 17
  • Thanks for the answer. However, it doesn't work in my case. I have many more pods (incl. GoogleMaps, Google-Mobile-Ads-SDK, Google/Analytics) that I cannot remove. – Codo Feb 08 '16 at 06:52
  • 1
    @Codo, I have many pods too... like FB sdks and all... But for google app invite and GPP login.. Its manage for above tow pods. – Kanjariya-IOS Feb 08 '16 at 08:20