Skip to content

Commit

Permalink
Firebase analytics running - build 47
Browse files Browse the repository at this point in the history
  • Loading branch information
wyne committed Apr 19, 2023
1 parent be3d86c commit d023a8a
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
*.mobileprovision
*.orig.*

# @generated expo-cli sync-b25d41054229aa64f1468014f243adfae8268af2

# @generated expo-cli sync-647791c5bd841d5c91864afb91c302553d300921
# The following patterns were generated by expo-cli

# OSX
Expand Down Expand Up @@ -42,28 +43,27 @@ local.properties
*.iml
*.hprof
.cxx/
*.keystore
!debug.keystore

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# Bundle artifacts
*.jsbundle

# CocoaPods
/ios/Pods/

# Temporary files created by Metro to check the health of the file watcher
.metro-health-check*

# Expo
.expo/
web-build/
dist/

# @end expo-cli
# @end expo-cli
36 changes: 36 additions & 0 deletions GoogleService-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CLIENT_ID</key>
<string>774305501031-4p2p095nnknm4b2vh41q36l5inespraj.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.774305501031-4p2p095nnknm4b2vh41q36l5inespraj</string>
<key>API_KEY</key>
<string>AIzaSyAwKOPijqBuePjkRFm3vVrgRXnMLgRlUms</string>
<key>GCM_SENDER_ID</key>
<string>774305501031</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.wyne.scorepad</string>
<key>PROJECT_ID</key>
<string>scorepad-with-rounds</string>
<key>STORAGE_BUCKET</key>
<string>scorepad-with-rounds.appspot.com</string>
<key>IS_ADS_ENABLED</key>
<false></false>
<key>IS_ANALYTICS_ENABLED</key>
<false></false>
<key>IS_APPINVITE_ENABLED</key>
<true></true>
<key>IS_GCM_ENABLED</key>
<true></true>
<key>IS_SIGNIN_ENABLED</key>
<true></true>
<key>GOOGLE_APP_ID</key>
<string>1:774305501031:ios:920db91be9724c6bf7e9c2</string>
<key>DATABASE_URL</key>
<string>https://scorepad-with-rounds-default-rtdb.firebaseio.com</string>
</dict>
</plist>
17 changes: 13 additions & 4 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const IS_DEV = process.env.APP_VARIANT === 'development';
export default {
name: IS_DEV ? 'ScorePad with Rounds (dev)' : 'ScorePad with Rounds',
slug: 'scorepad',
version: "2.1.6",
version: "2.1.7",
orientation: "default",
icon: IS_DEV ? './assets/icon-dev.png' : './assets/icon.png',
assetBundlePatterns: [
Expand All @@ -14,10 +14,11 @@ export default {
bundleIdentifier: IS_DEV ? 'com.wyne.scorepad.dev' : 'com.wyne.scorepad',
supportsTablet: true,
requireFullScreen: false,
buildNumber: "46",
buildNumber: "47",
infoPlist: {
RCTAsyncStorageExcludeFromBackup: false
},
googleServicesFile: "./GoogleService-Info.plist",
},
android: {
icon: "./assets/adaptive-icon.png",
Expand All @@ -27,7 +28,8 @@ export default {
},
package: IS_DEV ? 'com.wyne.scorepad.dev' : 'com.wyne.scorepad',
permissions: [],
versionCode: 46,
versionCode: 47,
googleServicesFile: "./GoogleService-Info.plist",
},
userInterfaceStyle: "dark",
web: {
Expand Down Expand Up @@ -57,7 +59,14 @@ export default {
}
],
"@react-native-firebase/app",
'./plugins/firebase-mods'
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
]
],
hooks: {
"postPublish": [
Expand Down
63 changes: 63 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"react-redux": "^8.0.2",
"redux-persist": "^6.0.0",
"sentry-expo": "~6.1.0",
"typescript": "^4.6.3"
"typescript": "^4.6.3",
"expo-build-properties": "~0.6.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
Expand Down

0 comments on commit d023a8a

Please sign in to comment.