- Android Studio: Make sure you have Android Studio installed
- Java Development Kit (JDK): Android Studio should install this automatically
-
Open in Android Studio:
- Open Android Studio
- Click "Open" and select this project folder
- Wait for Gradle sync to complete
-
Build the Project:
- In Android Studio, go to
Build→Clean Project - Then go to
Build→Rebuild Project
- In Android Studio, go to
-
Run the App:
- Connect an Android device or start an emulator
- Click the green "Run" button or press
Shift + F10
If you're seeing the default template instead of your app:
-
Ensure Compose is Enabled: The
build.gradle.ktsfile should have:buildFeatures { compose = true viewBinding = true } -
Check MainActivity: Your
MainActivity.ktshould be using Compose (which it is!) -
Clean Build:
- In Android Studio:
Build→Clean Project - Then:
Build→Rebuild Project
- In Android Studio:
- Landing Page: AI Style Changer with two options
- Clothes Change: Upload your photo and clothes reference
- Modern UI: Beautiful gradients and animations
MainActivity.kt: Main Compose activityLandingPage.kt: Home screen with feature selectionClothesChangePage.kt: Clothes change feature- UI Theme in
ui/theme/folder
- Jetpack Compose: Modern UI toolkit
- Material Design 3: Latest design system
- Navigation Compose: Screen navigation
- Kotlin: Programming language