Aegis/app/build.gradle

50 lines
1.8 KiB
Groovy
Raw Normal View History

2016-08-15 21:29:41 +02:00
apply plugin: 'com.android.application'
android {
2017-12-13 22:36:55 +01:00
compileSdkVersion 27
2016-08-15 21:29:41 +02:00
defaultConfig {
applicationId "me.impy.aegis"
2016-11-13 18:00:13 +01:00
minSdkVersion 19
2017-12-13 22:36:55 +01:00
targetSdkVersion 27
2016-08-15 21:29:41 +02:00
versionCode 1
versionName "1.0"
}
buildTypes {
2017-12-12 12:25:55 +01:00
debug {
minifyEnabled false
2017-12-12 12:25:55 +01:00
applicationIdSuffix ".debug"
manifestPlaceholders = [title:"AegisDev", iconName:"ic_launcher_debug"]
2017-12-12 12:25:55 +01:00
}
2016-08-15 21:29:41 +02:00
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
manifestPlaceholders = [title:"Aegis", iconName:"ic_launcher"]
2016-08-15 21:29:41 +02:00
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
2016-08-15 21:29:41 +02:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.getbase:floatingactionbutton:1.10.1'
implementation 'com.github.apl-devs:appintro:v4.2.2'
implementation 'com.github.avito-tech:krop:3e65e12'
implementation 'com.github.esafirm.android-image-picker:imagepicker:1.13.0'
implementation 'com.madgag.spongycastle:core:1.58.0.0'
implementation 'com.mattprecious.swirl:swirl:1.0.0'
implementation 'com.takisoft.fix:preference-v7:27.1.1.1'
implementation 'de.hdodenhof:circleimageview:2.2.0'
implementation 'me.dm7.barcodescanner:zxing:1.9'
testImplementation 'junit:junit:4.12'
2016-08-15 21:29:41 +02:00
}