-
-
Notifications
You must be signed in to change notification settings - Fork 510
/
Copy pathbuild.gradle
31 lines (28 loc) · 913 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
apply plugin: 'com.android.library'
apply plugin: 'com.vanniktech.maven.publish'
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 14
targetSdkVersion 33
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
tasks.withType(Javadoc).all { enabled = false }
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.13.2'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.core:core:1.6.0'
implementation 'io.michaelrocks:libphonenumber-android:8.13.48'
implementation "androidx.cardview:cardview:1.0.0"
}