Skip to content

AdMob Adobe Air Native Extension for iOS 9.0+, Android 19+. Supports Banner, Interstitial and RewardVideo ads

License

Notifications You must be signed in to change notification settings

murgi123/AdMob-ANE

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AdMob-ANE

AdMob Adobe Air Native Extension for iOS 9.0+, Android 19+.


Much time, skill and effort has gone into this. Help support the project

paypal


Android

The ANE + Dependencies

From the command line cd into /example and run:

  • OSX
bash get_android_dependencies.sh
  • Windows Powershell
PS get_android_dependencies.ps1

The dependencies can be downloaded directly from this repo:
[https://github.com/tuarua/Android-ANE-Dependancies/tree/master/anes]

<extensions>
    <extensionID>com.tuarua.frekotlin</extensionID>
    <extensionID>com.google.android.gms.play-services-base</extensionID>
    <extensionID>com.google.android.gms.play-services-ads-lite</extensionID>
    <extensionID>com.android.support.support-v4</extensionID>
    <extensionID>com.google.code.gson.gson</extensionID>
    ...
</extensions>

You will also need to include the following in your app manifest. Update accordingly.

<manifest android:installLocation="auto">
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
    <application android:enabled="true">
        <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
        <activity android:excludeFromRecents="false" android:hardwareAccelerated="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <activity
             android:name="com.google.android.gms.ads.AdActivity"
             android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
             android:theme="@android:style/Theme.Translucent" />
    </application>
</manifest>

Test Ads are included in the demo. You will need an AdMob account to deliver live ads.
[https://support.google.com/admob/answer/7356219]


iOS

The ANE + Dependencies

N.B. You must use a Mac to build an iOS app using this ANE. Windows is NOT supported.

From the command line cd into /example and run:

bash get_ios_dependencies.sh

The folder, ios_dependencies/device/Frameworks, must be packaged as part of your app when creating the ipa. How this is done will depend on the IDE you are using.
After the ipa is created unzip it and confirm there is a "Frameworks" folder in the root of the .app package.

You will also need to include the following in your app manifest. Update accordingly.

<InfoAdditions><![CDATA[
    <key>UIDeviceFamily</key>
    <array>
        <string>1</string>
        <string>2</string>
    </array>
    <key>MinimumOSVersion</key>
    <string>9.0</string>
    <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
        <key>NSAllowsArbitraryLoadsForMedia</key>
        <true/>
        <key>NSAllowsArbitraryLoadsInWebContent</key>
        <true/>
    </dict>
]]></InfoAdditions>

Test Ads are included in the demo. You will need an AdMob account to deliver live ads.
[https://support.google.com/admob/answer/7356219]


Running on Simulator

The example project can be run on the Simulator from IntelliJ using AIR 28.

Running on Device

The example project can be run on the device from IntelliJ using AIR 28.

Prerequisites

You will need:

  • IntelliJ IDEA / Flash Builder
  • AIR 29
  • Xcode 9.3
  • Xcode 9.1 for iOS Simulator
  • Android Studio 3 if you wish to edit the Android source
  • wget on OSX
  • Powershell on Windows

References

About

AdMob Adobe Air Native Extension for iOS 9.0+, Android 19+. Supports Banner, Interstitial and RewardVideo ads

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 40.1%
  • ActionScript 24.3%
  • Kotlin 13.6%
  • Objective-C 9.1%
  • Shell 8.6%
  • Java 2.4%
  • Other 1.9%