48 lines
2.0 KiB
Groovy
48 lines
2.0 KiB
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 26
|
||
|
defaultConfig {
|
||
|
applicationId "uk.co.syski.client.android"
|
||
|
minSdkVersion 21
|
||
|
targetSdkVersion 26
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
|
|
||
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
//noinspection GradleCompatible
|
||
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
||
|
implementation 'com.google.firebase:firebase-core:16.0.1'
|
||
|
implementation 'com.google.firebase:firebase-messaging:17.5.0'
|
||
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||
|
implementation 'com.android.support:design:26.1.0'
|
||
|
implementation 'com.android.support:support-v4:26.1.0'
|
||
|
testImplementation 'junit:junit:4.12'
|
||
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
||
|
compile 'com.android.support:support-annotations:27.1.1'
|
||
|
compile 'com.android.volley:volley:1.1.1'
|
||
|
implementation 'com.journeyapps:zxing-android-embedded:3.6.0'
|
||
|
implementation 'com.android.support:gridlayout-v7:26.1.0'
|
||
|
def room_version = "1.1.1"
|
||
|
implementation "android.arch.persistence.room:runtime:$room_version"
|
||
|
annotationProcessor "android.arch.persistence.room:compiler:$room_version"
|
||
|
def lifecycle_version = "1.1.1"
|
||
|
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
|
||
|
annotationProcessor "android.arch.lifecycle:compiler:$lifecycle_version"
|
||
|
debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
|
||
|
implementation 'com.jjoe64:graphview:4.2.1'
|
||
|
testImplementation 'org.mockito:mockito-core:1.10.19'
|
||
|
}
|
||
|
apply plugin: 'com.google.gms.google-services'
|