Features: - Detect GIF URLs automatically - Request conversion from alfred-proxy /api/convert-gif endpoint - Display loading indicator during conversion - Play MP4 in looping VideoView component - Auto-start playback on load - Error handling with user-friendly messages Technical details: - Uses AndroidView wrapper for VideoView in Compose - Coroutines for async conversion request - Gateway URL from SharedPreferences - Falls back to static image for non-GIF images Tested successfully with Tenor GIFs - smooth playback confirmed!
153 lines
5.1 KiB
Kotlin
153 lines
5.1 KiB
Kotlin
import java.util.Properties
|
|
import java.io.FileInputStream
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
id("com.google.dagger.hilt.android")
|
|
id("com.google.gms.google-services")
|
|
kotlin("kapt")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.openclaw.alfred"
|
|
compileSdk = 34
|
|
|
|
defaultConfig {
|
|
applicationId = "com.openclaw.alfred"
|
|
minSdk = 26
|
|
targetSdk = 34
|
|
versionCode = 43
|
|
versionName = "1.5.2"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
|
|
// Load secrets from secrets.properties
|
|
val secretsFile = rootProject.file("secrets.properties")
|
|
val secrets = Properties()
|
|
if (secretsFile.exists()) {
|
|
secrets.load(FileInputStream(secretsFile))
|
|
}
|
|
|
|
// Inject into BuildConfig (NOT committed to git)
|
|
buildConfigField("String", "AUTHENTIK_URL", "\"${secrets.getProperty("AUTHENTIK_URL", "")}\"")
|
|
buildConfigField("String", "AUTHENTIK_CLIENT_ID", "\"${secrets.getProperty("AUTHENTIK_CLIENT_ID", "")}\"")
|
|
buildConfigField("String", "OAUTH_REDIRECT_URI", "\"${secrets.getProperty("OAUTH_REDIRECT_URI", "")}\"")
|
|
buildConfigField("String", "GATEWAY_URL", "\"${secrets.getProperty("GATEWAY_URL", "")}\"")
|
|
buildConfigField("String", "ELEVENLABS_API_KEY", "\"${secrets.getProperty("ELEVENLABS_API_KEY", "")}\"")
|
|
buildConfigField("String", "ELEVENLABS_VOICE_ID", "\"${secrets.getProperty("ELEVENLABS_VOICE_ID", "")}\"")
|
|
|
|
// Manifest placeholders for OAuth redirect
|
|
manifestPlaceholders["appAuthRedirectScheme"] = "alfredmobile"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
buildConfig = true
|
|
}
|
|
|
|
composeOptions {
|
|
kotlinCompilerExtensionVersion = "1.5.4"
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Core Android
|
|
implementation("androidx.core:core-ktx:1.12.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
|
|
implementation("androidx.activity:activity-compose:1.8.2")
|
|
|
|
// Jetpack Compose
|
|
implementation(platform("androidx.compose:compose-bom:2023.10.01"))
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-graphics")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
implementation("androidx.compose.material3:material3")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
|
|
// Navigation
|
|
implementation("androidx.navigation:navigation-compose:2.7.6")
|
|
|
|
// Hilt Dependency Injection
|
|
implementation("com.google.dagger:hilt-android:2.48")
|
|
kapt("com.google.dagger:hilt-android-compiler:2.48")
|
|
implementation("androidx.hilt:hilt-navigation-compose:1.1.0")
|
|
|
|
// Retrofit for HTTP
|
|
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
|
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
implementation("com.squareup.okhttp3:logging-interceptor:4.12.0")
|
|
|
|
// Room Database
|
|
val roomVersion = "2.6.1"
|
|
implementation("androidx.room:room-runtime:$roomVersion")
|
|
implementation("androidx.room:room-ktx:$roomVersion")
|
|
kapt("androidx.room:room-compiler:$roomVersion")
|
|
|
|
// DataStore for preferences
|
|
implementation("androidx.datastore:datastore-preferences:1.0.0")
|
|
|
|
// WorkManager for background tasks
|
|
implementation("androidx.work:work-runtime-ktx:2.9.0")
|
|
|
|
// Coroutines
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
|
|
|
|
// OAuth2 Authentication
|
|
implementation("net.openid:appauth:0.11.1")
|
|
|
|
// Firebase Cloud Messaging
|
|
implementation(platform("com.google.firebase:firebase-bom:32.7.0"))
|
|
implementation("com.google.firebase:firebase-messaging-ktx")
|
|
|
|
// Vosk speech recognition for wake word
|
|
implementation("com.alphacephei:vosk-android:0.3.47")
|
|
|
|
// Coil for image loading
|
|
implementation("io.coil-kt:coil-compose:2.5.0")
|
|
implementation("io.coil-kt:coil-gif:2.5.0")
|
|
|
|
// Testing
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
androidTestImplementation(platform("androidx.compose:compose-bom:2023.10.01"))
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
}
|
|
|
|
// Allow references to generated code
|
|
kapt {
|
|
correctErrorTypes = true
|
|
}
|