Skip to content

Commit

Permalink
working android build- entry point is broken, but compiles successfully
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler-Owen-Morris committed Feb 16, 2023
1 parent 0619b5b commit 4816d37
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "interactive"
"java.configuration.updateBuildConfiguration": "automatic"
}
7 changes: 7 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,11 @@ allprojects {
jcenter()
maven { url 'https://www.jitpack.io' }
}
def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim())

configurations.all {
resolutionStrategy {
force "com.facebook.react:react-native:" + REACT_NATIVE_VERSION
}
}
}
5 changes: 5 additions & 0 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ android.enableJetifier=true

# Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.99.0

org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.jvmargs=-Xmx12800M
org.gradle.configureondemand=true
34 changes: 34 additions & 0 deletions ios/QualRNDEMO/GoogleService-Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?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>722077934704-p6luas1oenek41et559qu84d5kbd0epr.apps.googleusercontent.com</string>
<key>REVERSED_CLIENT_ID</key>
<string>com.googleusercontent.apps.722077934704-p6luas1oenek41et559qu84d5kbd0epr</string>
<key>API_KEY</key>
<string>AIzaSyBUtFLOFXy20D06_SigytMcyHAOSeUINP0</string>
<key>GCM_SENDER_ID</key>
<string>722077934704</string>
<key>PLIST_VERSION</key>
<string>1</string>
<key>BUNDLE_ID</key>
<string>com.walkerinfo.qualtricssdkdemodev</string>
<key>PROJECT_ID</key>
<string>walker-mobile-cx-utility</string>
<key>STORAGE_BUCKET</key>
<string>walker-mobile-cx-utility.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:722077934704:ios:4a6a5f962a7fe95e4680b5</string>
</dict>
</plist>

0 comments on commit 4816d37

Please sign in to comment.