UPDATE: Add self update, reset data, logs
This commit is contained in:
@@ -27,34 +27,61 @@ android {
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
}
|
||||
|
||||
buildFeatures {
|
||||
compose = true
|
||||
}
|
||||
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion = "1.5.0"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("androidx.core:core-ktx:1.12.0")
|
||||
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
||||
implementation("androidx.activity:activity-compose:1.8.2")
|
||||
// Compose UI
|
||||
implementation("androidx.compose.ui:ui:1.5.3")
|
||||
implementation("androidx.compose.ui:ui-graphics:1.5.3")
|
||||
implementation("androidx.compose.ui:ui-tooling-preview:1.5.3")
|
||||
|
||||
implementation(libs.androidx.core.ktx)
|
||||
implementation(libs.androidx.lifecycle.runtime.ktx)
|
||||
implementation(libs.androidx.activity.compose)
|
||||
implementation(platform(libs.androidx.compose.bom))
|
||||
implementation(libs.androidx.ui)
|
||||
implementation(libs.androidx.ui.graphics)
|
||||
implementation(libs.androidx.ui.tooling.preview)
|
||||
implementation(libs.androidx.material3)
|
||||
testImplementation(libs.junit)
|
||||
androidTestImplementation(libs.androidx.junit)
|
||||
androidTestImplementation(libs.androidx.espresso.core)
|
||||
androidTestImplementation(platform(libs.androidx.compose.bom))
|
||||
androidTestImplementation(libs.androidx.ui.test.junit4)
|
||||
debugImplementation(libs.androidx.ui.tooling)
|
||||
debugImplementation(libs.androidx.ui.test.manifest)
|
||||
// Foundation & Animation
|
||||
implementation("androidx.compose.foundation:foundation:1.5.3")
|
||||
implementation("androidx.compose.animation:animation:1.5.3")
|
||||
implementation("androidx.compose.animation:animation-core:1.5.3")
|
||||
|
||||
// Material & Material3
|
||||
implementation("androidx.compose.material:material:1.5.3")
|
||||
implementation("androidx.compose.material:material-icons-extended:1.5.3")
|
||||
implementation("androidx.compose.material3:material3:1.2.0")
|
||||
implementation("androidx.compose.material3:material3-window-size-class:1.2.0")
|
||||
|
||||
// Auto updater library
|
||||
implementation("com.github.CSAbhiOnline:AutoUpdater:1.0.1")
|
||||
|
||||
// Unit Test
|
||||
testImplementation("junit:junit:4.13.2")
|
||||
|
||||
// Android Instrumentation Test
|
||||
androidTestImplementation("androidx.test.ext:junit:1.2.1")
|
||||
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
||||
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.5.3")
|
||||
|
||||
// Debug
|
||||
debugImplementation("androidx.compose.ui:ui-tooling:1.5.3")
|
||||
debugImplementation("androidx.compose.ui:ui-test-manifest:1.5.3")
|
||||
|
||||
// Local AAR library
|
||||
implementation(files("../library/firefly-go.aar"))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user