A cheap attempt at a native Bluesky client for Android
at main 734 B view raw
1pluginManagement { 2 repositories { 3 google { 4 content { 5 includeGroupByRegex("com\\.android.*") 6 includeGroupByRegex("com\\.google.*") 7 includeGroupByRegex("androidx.*") 8 } 9 } 10 mavenCentral() 11 gradlePluginPortal() 12 } 13} 14dependencyResolutionManagement { 15 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 16 repositories { 17 google() 18 mavenCentral() 19 } 20} 21 22 23dependencyResolutionManagement { 24 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 25 repositories { 26 mavenCentral() 27 maven { url = uri("https://www.jitpack.io") } 28 } 29} 30rootProject.name = "Monarch" 31include(":app")