You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aegis/app/build.gradle

45 lines
1.3 KiB
Groovy

9 years ago
apply plugin: 'com.android.application'
android {
8 years ago
compileSdkVersion 25
buildToolsVersion "25"
9 years ago
defaultConfig {
applicationId "me.impy.aegis"
minSdkVersion 15
8 years ago
targetSdkVersion 25
9 years ago
versionCode 1
versionName "1.0"
8 years ago
jackOptions{
enabled true
}
9 years ago
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
9 years ago
}
9 years ago
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
8 years ago
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'
8 years ago
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'
9 years ago
}