Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Android Debug CI/CD Rho.Studio®
on:
workflow_dispatch:
push:
branches: [ "27-plan-domain-layer-use-case-implementation" ]
branches: [ " " ]
pull_request:
branches: [ "dev" , "pre-release" , "main" ]
branches: [ "dev" , "pre-release" ]

jobs:
build:
Expand Down Expand Up @@ -39,8 +39,8 @@ jobs:
path: app/build/outputs/apk/debug/app-debug.apk

- name: Upload Test Reports
if: always()
if: failure()
uses: actions/upload-artifact@v7.0.1
with:
name: test-reports
path: app/build/reports/tests/
path: "**/build/reports/tests/"
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Android Release Rho.Studio®

on:
workflow_dispatch:
push:
branches: [ "Pre-release-v102" ]
pull_request:
branches: [ "main" ]

jobs:
build:
name: Build and Release Rho.Studio®
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v6.1.0

- name: Set up JDK 17
uses: actions/setup-java@v5.5.0
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Run Unit Tests
run: ./gradlew test

- name: Build with Gradle
run: ./gradlew assembleDebug

- name: List APK directory
run: ls -la app/build/outputs/apk/debug/

- name: Rename APK
run: mv app/build/outputs/apk/debug/app-debug.apk app/build/outputs/apk/debug/RhoStudioUI.apk

- name: Upload APK
uses: actions/upload-artifact@v7.0.1
with:
name: Rho-Studio-UI
path: app/build/outputs/apk/debug/RhoStudioUI.apk

- name: Upload Test Reports
if: failure()
uses: actions/upload-artifact@v7.0.1
with:
name: test-reports
path: "**/build/reports/tests/"
386 changes: 315 additions & 71 deletions README.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
* ============================================================================
* Description:
* The primary landing screen of the application, serving as the main
* dashboard for user interactions. It orchestrates the display of
* Rho Studio Home screen. It establishes the primary entry point and
* experience for user interactions. It orchestrates the display of
* the header, available services, and the footer.
*
* Key Features:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Email: alexis.tercero@rho.studio
* Date: 2026-08-06
* ==============================================================================================
* Description: ViewModel for the Home feature, managing dashboard state, session data,
* Description: ViewModel for the Home feature, managing feature state, session data,
* and providing access to available service modules.
* ==============================================================================================
*/
Expand All @@ -36,7 +36,7 @@ class HomeViewModel : BaseViewModel() {
private val _currentUser = MutableStateFlow<User?>(sessionManager.getCurrentUserSync())
val currentUser: StateFlow<User?> = _currentUser.asStateFlow()

// Parametrized services for the dashboard
// Parametrized services for the Home experience
private val _services = MutableStateFlow<List<ServiceModule>>(
listOf(
ServiceModule("inv", R.string.module_inventory, R.color.rho_red),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* • Feedback: Built on Material 3 Button semantics to provide
* standard touch feedback and accessibility support.
* • Scalable Grid Integration: Designed to be used within LazyVerticalGrid
* for responsive dashboard layouts.
* for responsive feature layouts.
* ============================================================================
*/
package com.rho.studio.ui.features.home.components
Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,8 @@ android.defaults.buildfeatures.resvalues=false
android.sdk.defaultTargetSdkToCompileSdkIfUnset=true
android.usesSdkInManifest.disallowed=true
android.uniquePackageNames=false
android.dependency.useConstraints=true
android.dependency.useConstraints=false
android.r8.strictFullModeForKeepRules=false
android.r8.optimizedResourceShrinking=true
android.dependency.excludeLibraryComponentsFromConstraints=true
android.generateSyncIssueWhenLibraryConstraintsAreEnabled=false
android.sync.suppressAgpWarnings=LIBRARY_CONSTRAINTS_SHOULD_BE_DISABLED
android.sync.suppressAgpWarnings=LIBRARY_CONSTRAINTS_SHOULD_BE_DISABLED,UNSUPPORTED_PROJECT_OPTION_USE