microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.1.0-py

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

android/samples/mobile/settings.gradle.kts

24lines · modecode

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
22rootProject.name = "TypeAgentAndroidSample"
23include(":app")
24