SLAM/mobile/build.gradle

52 lines
1.8 KiB
Groovy
Raw Normal View History

2018-01-27 03:33:50 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "de.vanitasvitae.slam"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2019-12-12 15:09:41 +01:00
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:support-v13:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:support-emoji:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
2018-01-29 14:02:55 +01:00
2018-08-01 11:43:18 +02:00
// The holy ButterKnife \o/
2019-12-12 15:09:41 +01:00
implementation 'com.jakewharton:butterknife:8.8.1'
2018-08-01 11:43:18 +02:00
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
2018-01-27 03:33:50 +01:00
2018-08-01 11:43:18 +02:00
// External UI
2019-12-12 15:09:41 +01:00
implementation 'de.hdodenhof:circleimageview:2.0.0'
2018-01-27 03:33:50 +01:00
2018-08-01 11:43:18 +02:00
// Smack
2019-12-12 15:09:41 +01:00
implementation "org.igniterealtime.smack:smack-android-extensions:$smackVersion"
implementation "org.igniterealtime.smack:smack-omemo-signal:$smackVersion"
implementation "org.igniterealtime.smack:smack-tcp:$smackVersion"
implementation "org.igniterealtime.smack:smack-experimental:$smackVersion"
2018-01-27 03:33:50 +01:00
2018-08-01 11:43:18 +02:00
// SQLCipher
2019-12-12 15:09:41 +01:00
implementation 'net.zetetic:android-database-sqlcipher:3.5.9@aar'
2018-01-27 03:33:50 +01:00
2018-08-01 11:43:18 +02:00
// Test stuff
testImplementation 'junit:junit:4.12'
2019-12-12 15:09:41 +01:00
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2018-01-27 03:33:50 +01:00
}