Aegis/app/build.gradle

38 lines
1.1 KiB
Groovy
Raw Normal View History

2016-08-15 21:29:41 +02:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "me.impy.aegis"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
2016-08-21 21:55:04 +02:00
2016-08-15 21:29:41 +02:00
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
2016-09-29 17:04:17 +02:00
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:24.2.1'
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-09-29 17:04:17 +02:00
compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile 'com.android.support:recyclerview-v7:24.2.1'
2016-08-17 01:14:25 +02:00
compile 'com.yarolegovich:lovely-dialog:1.0.4'
compile 'net.zetetic:android-database-sqlcipher:3.5.3@aar'
2016-08-17 01:14:25 +02:00
testCompile 'junit:junit:4.12'
2016-08-15 21:29:41 +02:00
}