-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
45 lines (38 loc) · 901 Bytes
/
build.gradle
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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
}
}
repositories {
google()
mavenCentral()
}
apply plugin: 'com.android.library'
android {
buildFeatures{
dataBinding = false
viewBinding = true
}
compileSdkVersion 34
buildToolsVersion '34.0.0'
defaultConfig {
minSdkVersion 21
targetSdkVersion 34
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
namespace 'com.github.logviewer'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
}