mirror of
https://github.com/tijder/SmsMatrix.git
synced 2024-10-27 18:24:01 +00:00
58 lines
1.8 KiB
Groovy
58 lines
1.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'realm-android'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
buildToolsVersion '28.0.3'
|
|
defaultConfig {
|
|
applicationId "eu.droogers.smsmatrix"
|
|
minSdkVersion 23
|
|
targetSdkVersion 27
|
|
versionCode 11
|
|
versionName "0.0.11"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dir 'libs'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
implementation(name: 'matrix-sdk', ext: 'aar')
|
|
implementation(name: 'olm-sdk', ext: 'aar')
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
|
|
implementation 'com.google.code.gson:gson:2.8.2'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.10.0'
|
|
implementation 'com.facebook.stetho:stetho:1.5.0'
|
|
implementation 'com.facebook.stetho:stetho-okhttp3:1.5.0'
|
|
}
|