parent
256b222d69
commit
036ed5441a
@ -1,5 +1,15 @@ |
|||||||
import { View } from 'react-native'; |
import { View } from 'react-native'; |
||||||
|
import { BannerAd, BannerAdSize, TestIds } from 'react-native-google-mobile-ads'; |
||||||
|
|
||||||
|
// const unitId = __DEV__ ? TestIds.BANNER : 'ca-app-pub-7854988771210967~3806885931';
|
||||||
|
|
||||||
export default function AdBannerPlaceholder() { |
export default function AdBannerPlaceholder() { |
||||||
return <View className="w-full h-14" />; |
return ( |
||||||
|
<View className="w-full h-14" /> |
||||||
|
// <BannerAd
|
||||||
|
// unitId={unitId}
|
||||||
|
// size={BannerAdSize.BANNER}
|
||||||
|
// requestOptions={{ requestNonPersonalizedAdsOnly: true }}
|
||||||
|
// />
|
||||||
|
); |
||||||
} |
} |
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,42 +1,45 @@ |
|||||||
{ |
{ |
||||||
"name": "every-jap-dict", |
"name": "every-jap-dict", |
||||||
"version": "1.0.0", |
"version": "1.0.0", |
||||||
"main": "index.ts", |
"main": "index.ts", |
||||||
"scripts": { |
"scripts": { |
||||||
"start": "expo start --offline", |
"start": "expo start --offline", |
||||||
"android": "expo start --android --offline", |
"android": "expo start --android --offline", |
||||||
"ios": "expo start --ios --offline", |
"ios": "expo start --ios --offline", |
||||||
"web": "expo start --web --offline" |
"web": "expo start --web --offline" |
||||||
}, |
}, |
||||||
"dependencies": { |
"dependencies": { |
||||||
"@expo/html-elements": "^0.10.1", |
"@expo/html-elements": "^0.10.1", |
||||||
"@gluestack-ui/core": "^3.0.0", |
"@gluestack-ui/core": "^3.0.0", |
||||||
"@gluestack-ui/utils": "^3.0.0", |
"@gluestack-ui/utils": "^3.0.0", |
||||||
"@legendapp/motion": "^2.4.0", |
"@legendapp/motion": "^2.4.0", |
||||||
"@react-native-async-storage/async-storage": "^2.2.0", |
"@react-native-async-storage/async-storage": "^2.2.0", |
||||||
"babel-plugin-module-resolver": "^5.0.2", |
"babel-plugin-module-resolver": "^5.0.2", |
||||||
"expo": "~53.0.22", |
"expo": "~53.0.22", |
||||||
"expo-status-bar": "~2.2.3", |
"expo-dev-client": "~5.2.4", |
||||||
"install": "^0.13.0", |
"expo-status-bar": "~2.2.3", |
||||||
"nativewind": "^4.1.23", |
"install": "^0.13.0", |
||||||
"npm": "^11.6.0", |
"lucide-react-native": "^0.543.0", |
||||||
"react": "19.0.0", |
"nativewind": "^4.1.23", |
||||||
"react-aria": "^3.33.0", |
"npm": "^11.6.0", |
||||||
"react-dom": "^19.1.1", |
"react": "19.0.0", |
||||||
"react-native": "0.79.6", |
"react-aria": "^3.33.0", |
||||||
"react-native-reanimated": "^4.1.0", |
"react-dom": "^19.1.1", |
||||||
"react-native-safe-area-context": "^5.6.1", |
"react-native": "0.79.6", |
||||||
"react-native-svg": "^15.2.0", |
"react-native-google-mobile-ads": "^15.7.0", |
||||||
"react-native-webview": "^13.16.0", |
"react-native-reanimated": "^4.1.0", |
||||||
"react-native-worklets": "^0.5.0", |
"react-native-safe-area-context": "^5.6.1", |
||||||
"react-stately": "^3.39.0", |
"react-native-svg": "^15.12.0", |
||||||
"tailwind-variants": "^0.1.20", |
"react-native-webview": "^13.16.0", |
||||||
"tailwindcss": "^3.4.17" |
"react-native-worklets": "^0.5.0", |
||||||
}, |
"react-stately": "^3.39.0", |
||||||
"devDependencies": { |
"tailwind-variants": "^0.1.20", |
||||||
"@babel/core": "^7.25.2", |
"tailwindcss": "^3.4.17" |
||||||
"@types/react": "~19.0.10", |
}, |
||||||
"typescript": "~5.8.3" |
"devDependencies": { |
||||||
}, |
"@babel/core": "^7.25.2", |
||||||
"private": true |
"@types/react": "~19.0.10", |
||||||
} |
"typescript": "~5.8.3" |
||||||
|
}, |
||||||
|
"private": true |
||||||
|
} |
||||||
|
Loading…
Reference in new issue