// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '2.0.20' repositories { mavenCentral() google() } dependencies { classpath 'com.android.tools.build:gradle:8.6.0' classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.8.0" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { mavenCentral() google() maven { url 'https://jitpack.io' } } } tasks.register('clean', Delete) { delete rootProject.layout.buildDirectory } ext { apkName = 'mynero' }