Initial commit

This commit is contained in:
2025-06-04 23:42:03 +08:00
commit 6e10240402
48 changed files with 2300 additions and 0 deletions

28
backend/build.gradle.kts Normal file
View File

@@ -0,0 +1,28 @@
plugins {
autowire(libs.plugins.kotlin.jvm)
}
group = property.project.groupName
version = property.project.app.version
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(17)
sourceSets.all { languageSettings { languageVersion = "2.0" } }
compilerOptions {
freeCompilerArgs = listOf(
"-Xno-param-assertions",
"-Xno-call-assertions",
"-Xno-receiver-assertions"
)
}
}
dependencies {
implementation(org.slf4j.slf4j.simple)
implementation(org.slf4j.slf4j.api)
}

View File

@@ -0,0 +1,24 @@
/*
* Adbrowser - A modern cross-platform Android file manager powered by ADB.
* Copyright (C) 2019 HighCapable
* https://github.com/BetterAndroid/Adbrowser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* <p>
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* and eula along with this software. If not, see
* <https://www.gnu.org/licenses/>
*
* This file is created by fankes on 2025/6/4.
*/
package com.highcapable.adbrowser.backend.adb

View File

@@ -0,0 +1,24 @@
/*
* Adbrowser - A modern cross-platform Android file manager powered by ADB.
* Copyright (C) 2019 HighCapable
* https://github.com/BetterAndroid/Adbrowser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* <p>
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* and eula along with this software. If not, see
* <https://www.gnu.org/licenses/>
*
* This file is created by fankes on 2025/6/4.
*/
package com.highcapable.adbrowser.backend.domain

View File

@@ -0,0 +1,24 @@
/*
* Adbrowser - A modern cross-platform Android file manager powered by ADB.
* Copyright (C) 2019 HighCapable
* https://github.com/BetterAndroid/Adbrowser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* <p>
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* and eula along with this software. If not, see
* <https://www.gnu.org/licenses/>
*
* This file is created by fankes on 2025/6/4.
*/
package com.highcapable.adbrowser.backend.fs