Initial import of f7cloud-mobile native Android app.

Kotlin/Compose client for F7cloud (mail, files, talk, calendar, contacts, tasks, support).
Current version: 0.5.113 (build 121).
This commit is contained in:
F7cloud Mobile
2026-07-07 12:05:18 +03:00
commit fd17df80a8
1789 changed files with 246889 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven { url = 'https://jitpack.io' }
}
}
rootProject.name = "F7CloudMobile"
include(":app")
include(":core:auth")
include(":core:data")
include(":core:database")
include(":core:designsystem")
include(":core:network")
include(":core:push")
include(":core:ui")
include(":feature:files")
include(":feature:talk")
include(":feature:talk-native")
include(":feature:calendar")
include(":feature:contacts")
include(":feature:tasks")
include(":feature:deck")
include(":feature:mail")
include(":feature:f7support")
include(":vendor:talk-app")
project(":vendor:talk-app").projectDir = file("vendor/talk-android/app")