Skip to content

Commit 352336f

Browse files
Disable dependency metadata for APKs as requested by F-Droid
1 parent 10428ec commit 352336f

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525
minSdk = 26
2626
//noinspection OldTargetApi
2727
targetSdk = 34
28-
versionCode = 26
29-
versionName = "1.4.1"
28+
versionCode = 27
29+
versionName = "1.4.1a"
3030

3131
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3232
}
@@ -88,6 +88,11 @@ android {
8888
excludes += "/META-INF/{AL2.0,LGPL2.1}"
8989
}
9090
}
91+
dependenciesInfo {
92+
// Requested by F-Droid (https://github.com/MateusRodCosta/Share2Storage/issues/44)
93+
// Disables dependency metadata when building APKs.
94+
includeInApk = false
95+
}
9196
}
9297

9398
dependencies {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
IMPORTANT: A future version might drop Android O support, see https://github.com/MateusRodCosta/Share2Storage/issues/38 for more info.
2+
3+
• Updated dependencies
4+
• New "Skip File Picker" option when a Default folder is set
5+
• Improved UX and default setting values for decreasing friction (requested by some users)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
IMPORTANTE: Uma versão futura poderá deixar de suportar o Android O, veja https://github.com/MateusRodCosta/Share2Storage/issues/38 para mais informações.
2+
3+
• Dependências atualizadas
4+
• Nova opção "Pular seletor de arquivos" quando uma pasta padrão é configurada
5+
• Melhorias de UX e novos valores padrões de configurações com foco em redução de fricção (devido a demandas de usuários)

0 commit comments

Comments
 (0)