Files
furumi_android/settings.gradle.kts
T
Ultradesu be59bcb380 Rename package to cy.hexor.furumi, add F-Droid compatibility
- Rename applicationId and all sources from com.example.furumi_android to cy.hexor.furumi
- Add WTFPL LICENSE
- Add fastlane metadata
- Add fdroiddata build metadata cy.hexor.furumi.yml
- Remove foojay-resolver plugin (blocked by F-Droid scanner)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-09 10:41:23 +01:00

24 lines
538 B
Kotlin

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()
}
}
rootProject.name = "furumi-android"
include(":app")