Installation of Try-On with UI¶
Aiuta Try-On provides pre-built UI components and screens for implementing virtual try-on functionality in your application. This guide will walk you through implementing try-on features using the UI integration approach, which offers a complete out-of-the-box experience.
The UI integration approach is ideal for developers who want to quickly implement try-on functionality with minimal custom code while maintaining a consistent look and feel with other Aiuta features.
Dependencies¶
To use Aiuta Try On with UI components, you need to add the following dependencies to your project:
dependencies {
implementation("com.aiuta:fashionsdk-tryon-compose:4.2.1")
}
dependencies {
implementation "com.aiuta:fashionsdk-tryon-compose:4.2.1"
}
Where to find latest version of SDK?
Using Bill of Materials
To ensure consistent dependency versions and simplify version management, you can use the Bill of Materials (BOM)
dependencies {
// 1. Add BOM
implementation(platform("com.aiuta:fashionsdk-bom:4.2.1"))
// 2. Add all required for you dependencies
implementation("com.aiuta:fashionsdk")
implementation("com.aiuta:fashionsdk-configuration")
...
}
dependencies {
// 1. Add BOM
implementation platform("com.aiuta:fashionsdk-bom:4.2.1")
// 2. Add all required for you dependencies
implementation "com.aiuta:fashionsdk"
implementation "com.aiuta:fashionsdk-configuration"
...
}
Next Step¶
- Quick Test SDK Propely Integrated
- Create Configuration