com.jellify -> com.cosmonautical.jellify (#601)

* com.jellify -> com.cosmonautical.jellify

Update Android App ID to fall under the correct parent organization
This commit is contained in:
Violet Caulfield
2025-10-27 10:24:39 -05:00
committed by GitHub
parent 35a2a83f44
commit 8bd28bfe00
12 changed files with 12 additions and 12 deletions

View File

@@ -88,7 +88,7 @@ android {
namespace "com.jellify"
defaultConfig {
applicationId "com.jellify"
applicationId "com.cosmonautical.jellify"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 132

View File

@@ -1,2 +1,2 @@
json_key_file("./play-store-credentials.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
package_name("com.jellify") # e.g. com.krausefx.app
package_name("com.cosmonautical.jellify") # e.g. com.krausefx.app

View File

@@ -29,7 +29,7 @@ platform :android do
lane :deploy do
gradle(task: 'clean bundleRelease')
upload_to_play_store(
package_name: 'com.jellify',
package_name: 'com.cosmonautical.jellify',
track: 'internal',
release_status: 'draft',
json_key: './play-store-credentials.json',

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
- clearState # clears the state of the current app
- launchApp

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
- runFlow: ../tests/4-search.yaml
- runFlow: ../tests/5-discover.yaml

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
- launchApp
- tapOn:

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
- launchApp
# Wait for app to be ready, then navigate to Settings tab

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
- assertVisible:
id: "search-tab-button"

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
# Navigate to the home screen
- assertVisible:

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
# Wait for app to be ready, then navigate to Settings tab
- assertVisible:

View File

@@ -1,4 +1,4 @@
appId: com.jellify
appId: com.cosmonautical.jellify
---
# Wait for app to be ready, then navigate to Settings tab
- assertVisible:

View File

@@ -118,7 +118,7 @@ async function runSingleTest(flowPath, serverAddress, username, testIndex) {
})
console.log('🚀 Launching app...')
execSync(`adb shell monkey -p com.jellify 1`, { stdio: 'inherit' })
execSync(`adb shell monkey -p com.cosmonautical.jellify 1`, { stdio: 'inherit' })
// Wait a bit for app to launch
await sleep(2000)