speedwagon

How fast am I going? How fast was I going a week ago?

git clone https://code.pdelong.com/speedwagon.git

 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 = "Speedwagon"
23include(":app")