// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.9.22' repositories { google() mavenCentral() maven { url "https://plugins.gradle.org/m2/" content { includeModule 'org.jlleitschuh.gradle', 'ktlint-gradle' } } } dependencies { classpath 'com.android.tools.build:gradle:8.7.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jlleitschuh.gradle:ktlint-gradle:11.5.1" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() mavenCentral() maven { url "https://www.jitpack.io" content { includeModule 'com.github.nextcloud', 'Android-SingleSignOn' } } maven { url "https://codeberg.org/NextPush/maven/raw/branch/main/okhttp-sse/releases/" content { includeModule "com.squareup.okhttp3", "okhttp-sse" } } mavenLocal() } apply plugin: "org.jlleitschuh.gradle.ktlint" } task clean(type: Delete) { delete rootProject.buildDir }