Skip to content

Tpa auth client side #469

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

Merged
merged 12 commits into from
Jun 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Prev Previous commit
Next Next commit
Merge branch 'dev' of github.com:AugmentOS-Community/AugmentOS into t…
…pa-auth-client-side
  • Loading branch information
OkGoDoIt committed Jun 3, 2025
commit e2338b121cc80a2614b99629dc8bed2d67d65b6d
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -313,4 +313,4 @@ server/auth/serviceAccountKey.json
.env.development
.env.production
.env.staging
augmentos_asg_client/StreamPackLite/
augmentos_asg_client/StreamPackLite/
32 changes: 29 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,30 @@ AugmentOS is an open source operating system, app store, and development framewo
- iOS native module: `augmentos_manager/ios`
- Backend & web portals: `augmentos_cloud` (includes developer portal & app store)
- Android-based smart glasses client: `augmentos_asg_client` (uses `augmentos_core` as a library)
- AugmentOS Store: `augmentos_cloud/store/` (web app for app discovery)
- Developer Console: `augmentos_cloud/developer-portal/` (web app for app management)

## Build Commands
- Android Core: `./gradlew build`, `./gradlew assembleDebug`
- Android tests: `./gradlew test`, `./gradlew androidTest`
- React Native: `npm start`, `npm run android`, `npm run ios`

### React Native (augmentos_manager)
- Start dev server: `npm start`
- Run on platforms: `npm run android`, `npm run ios`
- Build Android: `npm run build-android`, `npm run build-android-release`
- Run tests: `npm test`, `npm test -- -t "test name"` (single test)
- Lint code: `npm run lint`
- iOS setup: `cd ios && pod install && cd ..`

### Cloud Backend (augmentos_cloud)
- Install deps: `bun install`
- Setup environment: `./scripts/docker-setup.sh` or `bun run setup-deps && bun run dev`
- Setup Docker network: `bun run dev:setup-network`

## Prerequisites
- Node.js and npm/yarn/bun
- Android Studio (for Android development)
- Xcode (for iOS development)
- Docker and Docker Compose (for cloud development)
- Java SDK 17 (for Android components)

## Code Style Guidelines
- Java/Android: Java SDK 17 required
Expand All @@ -39,6 +55,16 @@ AugmentOS is an open source operating system, app store, and development framewo
- Feature-based organization under src/
- Use try/catch with meaningful error messages

## Naming Conventions
- Top-level folders: `augmentos_${component}`
- User-facing names: CamelCase ("AugmentOS App", "AugmentOS Store", "AugmentOS Manager")
- Code follows language-specific conventions (Java, TypeScript, Swift)

## Project Resources
- [GitHub Project Board - General Tasks](https://github.com/orgs/AugmentOS-Community/projects/2)
- [GitHub Project Board - iOS Tasks](https://github.com/orgs/AugmentOS-Community/projects/1)
- [Discord Community](https://discord.gg/5ukNvkEAqT)

## AugmentosService.java Update for WiFi Support
To add WiFi support flag in AugmentosService.java, use this code in the generateStatusJson method:

Expand Down
3 changes: 3 additions & 0 deletions augmentos_asg_client/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
.externalNativeBuild
.cxx
local.properties

# Explicitly add mentra live libs
!app/src/main/jniLibs/**/*.so
Loading
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.