android_multiviewwer/build.gradle.kts

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-08-12 17:02:52 +09:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2024-09-04 18:18:36 +09:00
val kotlinVersion = "2.0.0"
2024-08-12 17:02:52 +09:00
extra ["kotlinVersion"] = kotlinVersion
dependencies {
classpath (kotlin("gradle-plugin", version = kotlinVersion))
}
}
plugins {
2024-08-23 16:03:43 +09:00
id ("com.android.application") version "8.2.2" apply false
id ("com.android.library") version "8.2.2" apply false
2024-09-04 18:18:36 +09:00
id ("io.realm.kotlin") version "2.0.0" apply false
2024-08-12 17:02:52 +09:00
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}
2024-11-11 18:12:06 +09:00
ext {
// minSdkVersion = 7
// targetSdkVersion = 23
// compileSdkVersion = 23
// buildToolsVersion = '23.0.2'
//
// sourceCompatibility = JavaVersion.VERSION_1_7
// targetCompatibility = JavaVersion.VERSION_1_7
//
// versionCode = 1
// versionName = '0.9.5'
//
// supportLibVersion = '23.3.0'
// playLibVersion = '8.4.0'
}
2024-09-04 18:18:36 +09:00
//repositories {
// mavenCentral()
// maven {
// url = uri("https://jitpack.io")
// }
// jcenter()
// mavenLocal()
// flatDir {
// dirs("libs")
// }
//}