Initial commit

This commit is contained in:
Shou
2025-12-03 04:29:51 +08:00
parent ad17d7d785
commit e09271a60e
43 changed files with 6128 additions and 1 deletions

22
settings.gradle Normal file
View File

@@ -0,0 +1,22 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
mavenLocal()
google()
mavenCentral()
maven { url 'https://jitpack.io' }
// Local AARs for SellyCloudSDK
flatDir { dirs file('SellyCloudSDK/libs') }
}
}
rootProject.name = "SellyCLoudSDKExample"
include ':example'
include ':SellyCloudSDK'