A fork of the Mastodon Android client with Bluesky/ATProto support.
at main 22 lines 788 B view raw
1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2buildscript { 3 extra.apply { 4 set("kotlin_version", "2.3.0") 5 } 6 repositories { 7 google() 8 mavenCentral() 9 } 10 dependencies { 11 classpath("com.android.tools.build:gradle:8.13.2") 12 classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1") 13 val kotlin_version: String by project.extra 14 classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") 15 // NOTE: Do not place your application dependencies here; they belong 16 // in the individual module build.gradle files 17 } 18} 19 20tasks.register<Delete>("clean") { 21 delete(rootProject.layout.buildDirectory) 22}