Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android Picker #362

Merged
merged 15 commits into from
Dec 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ Run any build command remotely by removing `--local` flag.

### Development - Simulator

Prerequisite: `SENTRY_AUTH_TOKEN` in `.env`
For android, use JDK 17.

```zsh
npx react-native-clean-project
npx expo prebuild
eas build --profile development-simulator --platform ios --local
eas build --profile development-simulator --platform android --local
eas build:run -p ios # select expo build from above
eas build:run -p android # select expo build from above
npx expo start --dev-client
Expand Down
6 changes: 3 additions & 3 deletions app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ switch (variant) {
export default {
name: name,
slug: 'scorepad',
version: "2.4.4",
version: "2.4.5",
orientation: "default",
icon: icon,
assetBundlePatterns: [
Expand All @@ -53,7 +53,7 @@ export default {
bundleIdentifier: packageName,
supportsTablet: true,
requireFullScreen: false,
buildNumber: "65",
buildNumber: "66",
infoPlist: {
RCTAsyncStorageExcludeFromBackup: false
},
Expand All @@ -67,7 +67,7 @@ export default {
},
package: packageName,
permissions: [],
versionCode: 65,
versionCode: 66,
googleServicesFile: "./google-services.json",
},
userInterfaceStyle: "dark",
Expand Down
2 changes: 1 addition & 1 deletion eas.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@
}
}
}
}
}
72 changes: 72 additions & 0 deletions google-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,78 @@
]
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:774305501031:android:eab18897bfe9d4fbf7e9c2",
"android_client_info": {
"package_name": "com.wyne.scorepad.dev"
}
},
"oauth_client": [
{
"client_id": "774305501031-c5ceh2ekgjqc4n9o0at9j2e83d162mpb.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyBi8wD4wlmaEiDh57iLFqQcqPlUl6nZjrw"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "774305501031-c5ceh2ekgjqc4n9o0at9j2e83d162mpb.apps.googleusercontent.com",
"client_type": 3
},
{
"client_id": "774305501031-4p2p095nnknm4b2vh41q36l5inespraj.apps.googleusercontent.com",
"client_type": 2,
"ios_info": {
"bundle_id": "com.wyne.scorepad"
}
}
]
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:774305501031:android:ac86740f897e2a32f7e9c2",
"android_client_info": {
"package_name": "com.wyne.scorepad.preview"
}
},
"oauth_client": [
{
"client_id": "774305501031-c5ceh2ekgjqc4n9o0at9j2e83d162mpb.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyBi8wD4wlmaEiDh57iLFqQcqPlUl6nZjrw"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "774305501031-c5ceh2ekgjqc4n9o0at9j2e83d162mpb.apps.googleusercontent.com",
"client_type": 3
},
{
"client_id": "774305501031-4p2p095nnknm4b2vh41q36l5inespraj.apps.googleusercontent.com",
"client_type": 2,
"ios_info": {
"bundle_id": "com.wyne.scorepad"
}
}
]
}
}
}
],
"configuration_version": "1"
Expand Down
Loading