|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion "25"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "me.impy.aegis"
|
|
|
|
minSdkVersion 15
|
|
|
|
targetSdkVersion 25
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
jackOptions{
|
|
|
|
enabled true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
targetCompatibility 1.8
|
|
|
|
sourceCompatibility 1.8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
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'
|
|
|
|
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
|
|
compile 'me.dm7.barcodescanner:zxing:1.9'
|
|
|
|
compile 'com.android.support:cardview-v7:25.0.0'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.0.0'
|
|
|
|
compile 'com.android.support:support-v4:25.0.0'
|
|
|
|
compile 'com.android.support:recyclerview-v7:25.0.0'
|
|
|
|
compile 'com.yarolegovich:lovely-dialog:1.0.4'
|
|
|
|
compile 'net.zetetic:android-database-sqlcipher:3.5.3@aar'
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
}
|