64 lines
1.7 KiB
Groovy
64 lines
1.7 KiB
Groovy
apply plugin: 'idea'
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
|
|
defaultConfig {
|
|
applicationId "ch.dissem.apps.abit"
|
|
minSdkVersion 19
|
|
targetSdkVersion 23
|
|
versionCode 3
|
|
versionName "1.0-beta"
|
|
}
|
|
signingConfigs {
|
|
release {
|
|
storeFile file(keyStoreFile)
|
|
storePassword keyStorePassword
|
|
keyAlias signingKeyAlias
|
|
keyPassword signingKeyPassword
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
compile 'com.android.support:support-v4:23.1.1'
|
|
compile 'com.android.support:design:23.1.1'
|
|
|
|
compile 'ch.dissem.jabit:jabit-core:0.2.1-SNAPSHOT'
|
|
compile 'ch.dissem.jabit:jabit-networking:0.2.1-SNAPSHOT'
|
|
compile 'ch.dissem.jabit:jabit-cryptography-spongy:0.2.1-SNAPSHOT'
|
|
compile 'ch.dissem.jabit:jabit-extensions:0.2.1-SNAPSHOT'
|
|
|
|
compile 'org.slf4j:slf4j-android:1.7.12'
|
|
|
|
compile('com.mikepenz:materialdrawer:3.1.0@aar') {
|
|
transitive = true
|
|
}
|
|
compile('com.mikepenz:aboutlibraries:5.3.4@aar') {
|
|
transitive = true
|
|
}
|
|
compile 'com.mikepenz:iconics:1.6.2@aar'
|
|
compile 'com.mikepenz:community-material-typeface:1.1.71@aar'
|
|
}
|
|
|
|
idea.module {
|
|
downloadJavadoc = true
|
|
downloadSources = true
|
|
}
|
|
|
|
android {
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
} |