be59bcb380
- 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>
24 lines
538 B
Kotlin
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")
|