-
Notifications
You must be signed in to change notification settings - Fork 784
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 961 Bytes
/
build.gradle
File metadata and controls
44 lines (36 loc) · 961 Bytes
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
apply plugin: 'com.android.application'
android {
namespace 'cn.trinea.android.demo'
compileSdk 34
defaultConfig {
applicationId "cn.trinea.android.demo"
minSdk 21
targetSdk 34
versionCode 50
versionName "3.2.5"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
aidl true
}
sourceSets {
main {
aidl.srcDirs = ['src/main/java']
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard.cfg'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':android-common')
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}