feat: initialize Android SSH manager app with terminal and crypto

This commit is contained in:
Tronax 2026-08-03 18:04:29 +02:00
commit 66417cc194
Signed by: Tronax
SSH key fingerprint: SHA256:2pKKXDZucWvaF/GzXNz0FY53EAO1YDLN80bqS+TTz/o
55 changed files with 3711 additions and 0 deletions

26
settings.gradle.kts Normal file
View file

@ -0,0 +1,26 @@
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// Termux terminal-emulator is published here (Maven Central copy is outdated).
maven { url = uri("https://jitpack.io") }
}
}
rootProject.name = "Mobile SSH Manager"
include(":app")