mirror of
https://github.com/helloworld1/FreeOTPPlus
synced 2025-10-06 00:23:07 +02:00
27 lines
599 B
Plaintext
27 lines
599 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.2.2")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
|
|
classpath(libs.hiltPlugin)
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
extra["compileSdkVersion"] = 34
|
|
extra["targetSdkVersion"] = 34
|
|
extra["minSdkVersion"] = 21
|
|
extra["versionCode"] = 22
|
|
extra["versionName"] = "3.1"
|