-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild.gradle.kts
53 lines (46 loc) · 1.09 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
//noinspection UseTomlInstead
classpath("com.android.tools.build:gradle:8.7.3")
}
}
repositories {
google()
mavenCentral()
}
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
android {
buildFeatures {
dataBinding = false
viewBinding = true
}
compileSdk = 35
buildToolsVersion = "35.0.0"
defaultConfig {
minSdk = 21
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
namespace = "com.github.logviewer"
kotlinOptions {
jvmTarget = "1.8"
}
}
dependencies {
//noinspection UseTomlInstead
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("androidx.activity:activity-ktx:1.9.3")
implementation("com.google.android.material:material:1.12.0")
implementation("androidx.lifecycle:lifecycle-extensions:2.2.0")
}