Aegis/app/build.gradle

44 lines
1.3 KiB
Groovy
Raw Normal View History

2016-08-15 21:29:41 +02:00
apply plugin: 'com.android.application'
android {
2016-11-03 22:04:50 +01:00
compileSdkVersion 25
buildToolsVersion "25"
2016-08-15 21:29:41 +02:00
defaultConfig {
applicationId "me.impy.aegis"
2016-11-13 18:00:13 +01:00
minSdkVersion 19
2016-11-03 22:04:50 +01:00
targetSdkVersion 25
2016-08-15 21:29:41 +02:00
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
2016-08-15 21:29:41 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
2016-08-15 21:29:41 +02:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:recyclerview-v7:25.0.0'
2016-11-03 22:04:50 +01:00
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
compile 'agency.tango.android:material-intro-screen:0.0.3'
2016-08-21 21:55:04 +02:00
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
2016-08-15 22:31:28 +02:00
compile 'me.dm7.barcodescanner:zxing:1.9'
2016-11-03 22:04:50 +01:00
compile 'com.android.support:cardview-v7:25.0.0'
compile 'com.android.support:support-v4:25.0.0'
2016-08-17 01:14:25 +02:00
compile 'com.yarolegovich:lovely-dialog:1.0.4'
compile 'com.mattprecious.swirl:swirl:1.0.0'
compile 'com.madgag.spongycastle:core:1.56.0.0'
2016-08-17 01:14:25 +02:00
testCompile 'junit:junit:4.12'
2016-08-15 21:29:41 +02:00
}