forked from ammarahm-ed/react-native-admob-native-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ammarahm-ed/master
Feature: Create Expo plugin (ammarahm-ed#323)
- Loading branch information
Showing
15 changed files
with
24,829 additions
and
9,658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// @generated by expo-module-scripts | ||
module.exports = require('expo-module-scripts/eslintrc.base.js'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('./plugin/build/withAdmobNativeAds'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('expo-module-scripts/jest-preset-plugin'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import {ConfigPlugin, createRunOncePlugin} from '@expo/config-plugins'; | ||
import { withAdmobNativeAdsAndroid } from './withAdmobNativeAdsAndroid'; | ||
import { withAdmobNativeAdsGradle } from './withAdmobNativeAdsAppBuildGradle'; | ||
import { withAdmobNativeAdsPlist } from './withAdmobNativeAdsInfoPlist'; | ||
import { withAdmobNativeAdsPodNat } from './withAdmobNativeAdsPod'; | ||
|
||
const pkg = require('react-native-admob-native-ads/package.json'); | ||
|
||
const withAdmobNativeAds: ConfigPlugin = (config, props) => { | ||
config = withAdmobNativeAdsAndroid(config, props); | ||
config = withAdmobNativeAdsGradle(config); | ||
config = withAdmobNativeAdsPlist(config, props); | ||
config = withAdmobNativeAdsPodNat(config); | ||
return config; | ||
}; | ||
|
||
export default createRunOncePlugin(withAdmobNativeAds, pkg.name, pkg.version); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { | ||
AndroidConfig, | ||
ConfigPlugin, | ||
withAndroidManifest, | ||
} from '@expo/config-plugins'; | ||
|
||
const { addMetaDataItemToMainApplication, getMainApplicationOrThrow } = AndroidConfig.Manifest; | ||
|
||
const withAdmobNativeAdsManifest: ConfigPlugin = (config, props) => { | ||
return withAndroidManifest(config, (config) => { | ||
config.modResults = setAdmobNativeAdsConfig(config.modResults, props); | ||
return config; | ||
}); | ||
}; | ||
|
||
const setAdmobNativeAdsConfig = (androidManifest: AndroidConfig.Manifest.AndroidManifest, props: any) => { | ||
let mainApplication = getMainApplicationOrThrow(androidManifest); | ||
addMetaDataItemToMainApplication( | ||
mainApplication, | ||
'com.google.android.gms.ads.APPLICATION_ID', | ||
props.androidAppId | ||
); | ||
|
||
return androidManifest; | ||
}; | ||
|
||
export const withAdmobNativeAdsAndroid: ConfigPlugin = (config, props) => { | ||
return withAdmobNativeAdsManifest(config, props); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
import { withDangerousMod, withPlugins } from '@expo/config-plugins'; | ||
import { resolve } from 'path'; | ||
import { writeFileSync, readFileSync } from 'fs'; | ||
|
||
const withAdmobNativeAdsAppBuildGradle = (config: any) => { | ||
return withDangerousMod(config, [ | ||
'android', | ||
(cfg: any) => { | ||
const { platformProjectRoot } = cfg.modRequest; | ||
const build = resolve(platformProjectRoot, 'app/build.gradle'); | ||
const contents = readFileSync(build, 'utf-8'); | ||
const lines = contents.split('\n'); | ||
const index = lines.findIndex((line: any) => | ||
/dependencies\s{/.test(line) | ||
); | ||
|
||
writeFileSync( | ||
build, | ||
[ | ||
...lines.slice(0, index + 1), | ||
` implementation "com.google.android.gms:play-services-ads:21.3.0"`, | ||
...lines.slice(index + 1), | ||
].join('\n') | ||
); | ||
|
||
return cfg; | ||
} | ||
]); | ||
}; | ||
|
||
export const withAdmobNativeAdsGradle = (config: any) => { | ||
return withPlugins(config, [ | ||
withAdmobNativeAdsAppBuildGradle, | ||
]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
import { withInfoPlist } from '@expo/config-plugins'; | ||
|
||
const withAdmobNativeAdsInfoPlist = (config: any, props: any) => { | ||
return withInfoPlist(config, (config) => { | ||
config.modResults.GADApplicationIdentifier = props.iosAppId; | ||
const identifiers = [ | ||
{ | ||
SKAdNetworkIdentifier: 'cstr6suwn9.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '4fzdc2evr5.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '4pfyvq9l8r.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '2fnua5tdw4.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'ydx93a7ass.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '5a6flpkh64.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'p78axxw29g.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'v72qych5uu.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'ludvb6z3bs.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'cp8zw746q7.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'c6k4g5qg8m.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 's39g8k73mm.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '3qy4746246.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '3sh42y64q3.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'f38h382jlk.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'hs6bdukanm.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'prcb7njmu6.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'v4nxqhlyqp.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'wzmmz9fp6w.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'yclnxrl5pm.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 't38b2kh725.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '7ug5zh24hu.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '9rd848q2bz.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'y5ghdn5j9k.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'n6fk4nfna4.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'v9wttpbfk9.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'n38lu8286q.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '47vhws6wlr.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'kbd757ywx3.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '9t245vhmpl.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'a2p9lx4jpn.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '22mmun2rn5.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '4468km3ulz.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '2u9pt9hc89.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '8s468mfl3y.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'av6w8kgt66.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'klf5c3l5u5.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'ppxm28t8ap.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '424m5254lk.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'ecpz2srf59.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'uw77j35x4d.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'mlmmfzh3r3.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '578prtvx9j.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '4dzt52r2t5.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'gta9lk7p23.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'e5fvkxwrpn.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '8c4e2ghe7u.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: 'zq492l623r.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '3rd42ekr43.skadnetwork', | ||
}, | ||
{ | ||
SKAdNetworkIdentifier: '3qcr597p9d.skadnetwork', | ||
} | ||
]; | ||
config.modResults.SKAdNetworkItems = identifiers; | ||
return config; | ||
}); | ||
}; | ||
|
||
export const withAdmobNativeAdsPlist = (config: any, props: any) => { | ||
return withAdmobNativeAdsInfoPlist(config, props); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { withDangerousMod, withPlugins } from '@expo/config-plugins'; | ||
import { resolve } from 'path'; | ||
import { writeFileSync, readFileSync } from 'fs'; | ||
|
||
const withAdmobNativeAdsPod = (config: any) => { | ||
return withDangerousMod(config, [ | ||
'ios', | ||
(cfg) => { | ||
const { platformProjectRoot } = cfg.modRequest; | ||
const podfile = resolve(platformProjectRoot, 'Podfile'); | ||
const contents = readFileSync(podfile, 'utf-8'); | ||
const lines = contents.split('\n'); | ||
const index = lines.findIndex((line: string) => | ||
/\s+use_expo_modules!/.test(line) | ||
); | ||
|
||
writeFileSync( | ||
podfile, | ||
[ | ||
...lines.slice(0, index), | ||
` pod 'Google-Mobile-Ads-SDK'`, | ||
` pod 'GoogleMobileAdsMediationFacebook', '6.11.0.0'`, | ||
...lines.slice(index), | ||
].join('\n') | ||
); | ||
|
||
return cfg; | ||
} | ||
]); | ||
}; | ||
|
||
export const withAdmobNativeAdsPodNat = (config: any) => { | ||
return withPlugins(config, [ | ||
withAdmobNativeAdsPod, | ||
]); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "expo-module-scripts/tsconfig.plugin", | ||
"compilerOptions": { | ||
"outDir": "build", | ||
"rootDir": "src" | ||
}, | ||
"include": ["./src"], | ||
"exclude": ["**/__mocks__/*", "**/__tests__/*"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"jsx": "react-native", | ||
"module": "commonjs", | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"alwaysStrict": true, | ||
"skipLibCheck": true | ||
} | ||
} |