Disable dependency tree, logo to png

This commit is contained in:
soraefir
2026-06-30 07:17:57 +02:00
parent 84432fe68d
commit 1bee1dabbe
4 changed files with 12 additions and 5 deletions
+11 -4
View File
@@ -82,11 +82,18 @@ android {
androidResources {
generateLocaleConfig = true
}
dependenciesInfo {
// Disables dependency metadata when building APKs (for IzzyOnDroid/F-Droid)
includeInApk = false
// Disables dependency metadata when building Android App Bundles (for Google Play)
includeInBundle = false
}
}
dependencies {
implementation 'androidx.compose.foundation:foundation:1.11.2'
implementation 'androidx.compose.runtime:runtime:1.11.2'
implementation 'androidx.compose.foundation:foundation:1.11.3'
implementation 'androidx.compose.runtime:runtime:1.11.3'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.1.5'
implementation 'androidx.preference:preference-ktx:1.2.1'
@@ -99,7 +106,7 @@ dependencies {
implementation 'com.github.nextcloud:Android-SingleSignOn:1.1.0'
implementation 'com.opencsv:opencsv:5.12.0'
implementation platform('androidx.compose:compose-bom:2026.05.01')
implementation platform('androidx.compose:compose-bom:2026.06.00')
implementation 'androidx.compose.ui:ui'
implementation 'androidx.compose.material:material'
implementation 'androidx.compose.material:material-icons-extended'
@@ -107,5 +114,5 @@ dependencies {
debugImplementation 'androidx.compose.ui:ui-tooling'
implementation 'androidx.activity:activity-compose:1.13.0'
implementation 'androidx.activity:activity-ktx:1.13.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0'
implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.11.0'
}