// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.9.21' repositories { mavenCentral() google() } dependencies { classpath 'com.android.tools.build:gradle:8.1.3' classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.2" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } allprojects { repositories { mavenCentral() google() } } task clean(type: Delete) { delete rootProject.buildDir } ext { apkName = 'mynero' }