-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (35 loc) · 1.12 KB
/
build.gradle
File metadata and controls
38 lines (35 loc) · 1.12 KB
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
apply plugin: 'com.android.application'
android {
compileSdk 33
defaultConfig {
applicationId "com.scheffsblend.designertools"
minSdkVersion 24
targetSdkVersion 33
versionCode 6
versionName "2.2.2"
setProperty("archivesBaseName", "DesignerTools-$versionName")
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependenciesInfo {
includeInApk true
includeInBundle true
}
buildToolsVersion '33.0.0'
namespace 'org.cyanogenmod.designertools'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.larswerkman:lobsterpicker:1.0.1'
implementation 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
}