Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

need older version of Google Mobile Ads SDK iOS

Tags:

I am in the need of older version of Google Mobile Ads SDK iOS may be 7.7.0 or older. Please share if anyone has it. I need to work on Xcode 6.3.2 and iOS 8.3. but latest version needs iOS 9 or later.

Thanks.

like image 440
Dhanrajsinh Gohil Avatar asked Jun 19 '16 07:06

Dhanrajsinh Gohil


People also ask

Does Google AdMob work on iOS?

Sign in to your AdMob account at https://apps.admob.com. Click Apps in the sidebar. Click Add app. Select the platform of your app (Android or iOS).

How do I find my Google mobile ad version?

Open AdRequest. cs (in GoogleMobileAds Api) Look for the Version field parameter (IE public const string Version = "3.18. 0")

What is Google Mobile Ads SDK?

The SDK exposes the capabilities of the in-app browsers available on iOS and Android. This allows developers to access device capabilities such as the accelerometer, gyroscope and compass via HTML5 where the platform supports them. Learn more about these capabilities for Android and iOS. App events.


2 Answers

In case anyone is looking for the answer to this question, as I was today... Here is a solution that incorporates Nika's fine answer and gives you a standalone solution for closed-source frameworks like these.

The Cocoapods specs need to be public and if you go to where those specs are published, in this case: https://github.com/CocoaPods/Specs/tree/master/Specs/5/9/a/Google-Mobile-Ads-SDK

You'll find a list of all the versions of Google Mobile Ads published via Cocoapods.

Each spec contains a download link, so the spec for version 7.59.0 of the SDK / framework shows that link to be https://dl.google.com/dl/cpdc/de07064cf20bb7a6/Google-Mobile-Ads-SDK-7.59.0.tar.gz

like image 87
Michael Dautermann Avatar answered Sep 28 '22 02:09

Michael Dautermann


You can solve your problem yourself mate:

Step 1: learn cocoapods. Cocoapods are used to integrate 3rd party libraries. It usually stores many many versions of the same libraries. There are plenty of tutorials on this under 10 minutes on youtube.

Step 2: import the version of google mobile ads library you need like this pod 'GoogleMobileAds', '~> 7.7'

like image 32
Nika Kasradze Avatar answered Sep 28 '22 03:09

Nika Kasradze