expo-ads-admob
Advanced tools
Comparing version 4.0.0 to 5.0.0-rc.0
{ | ||
"name": "expo-ads-admob", | ||
"version": "4.0.0", | ||
"version": "5.0.0-rc.0", | ||
"description": "Provides support for the Google AdMob SDK (https://www.google.com/admob/) for mobile advertising. This module is largely based of the react-native-admob (https://github.com/sbugert/react-native-admob) module, as the documentation and questions surrounding that module may prove helpful. A simple example implementing AdMob SDK can be found at https://github.com/deadcoder0904/expo-google-admob", | ||
@@ -44,3 +44,3 @@ "main": "build/index.js", | ||
}, | ||
"gitHead": "8413e821076a2eca36b302e68dd628ce2e1f591a" | ||
"gitHead": "211a7a3ce4007e7aa10ccf6efac4b5333ec31d0a" | ||
} |
@@ -14,3 +14,3 @@ # expo-ads-admob | ||
For bare React Native projects, you must ensure that you have [installed and configured the `@unimodules/core` package](https://github.com/unimodules/core) before continuing. | ||
For bare React Native projects, you must ensure that you have [installed and configured the `react-native-unimodules` package](https://github.com/unimodules/react-native-unimodules) before continuing. | ||
@@ -25,35 +25,10 @@ ### Add the package to your npm dependencies | ||
Add the dependency to your `Podfile` and then run `pod install`. | ||
Run `pod install` in the ios directory after installing the npm package. | ||
```ruby | ||
pod 'EXAdsAdMob', path: '../node_modules/expo-ads-admob/ios' | ||
``` | ||
### Configure for Android | ||
1. Append the following lines to `android/settings.gradle`: | ||
No additional set up necessary. | ||
```gradle | ||
include ':expo-ads-admob' | ||
project(':expo-ads-admob').projectDir = new File(rootProject.projectDir, '../node_modules/expo-ads-admob/android') | ||
``` | ||
2. Insert the following lines inside the dependencies block in `android/app/build.gradle`: | ||
```gradle | ||
api project(':expo-ads-admob') | ||
``` | ||
3. In `MainApplication.java`, import the package and add it to the `ReactModuleRegistryProvider` list: | ||
```java | ||
import expo.modules.ads.admob.AdMobPackage; | ||
``` | ||
```java | ||
private final ReactModuleRegistryProvider mModuleRegistryProvider = new ReactModuleRegistryProvider(Arrays.<Package>asList( | ||
// Your other packages will be here | ||
new AdMobPackage() | ||
), Arrays.<SingletonModule>asList()); | ||
``` | ||
# Contributing | ||
Contributions are very welcome! Please refer to guidelines described in the [contributing guide]( https://github.com/expo/expo#contributing). |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
741916
1
33