2015-11-24 11:23:31 -05:00
|
|
|
apply plugin: 'com.android.application'
|
2018-06-18 08:46:10 +00:00
|
|
|
apply plugin: 'org.sonarqube'
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
android {
|
2017-12-10 23:07:37 +01:00
|
|
|
compileSdkVersion 27
|
2018-05-25 20:23:56 +02:00
|
|
|
buildToolsVersion '27.0.3'
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.wismna.geoffroy.donext"
|
2017-03-15 17:34:27 -04:00
|
|
|
minSdkVersion 19
|
2017-12-10 23:07:37 +01:00
|
|
|
targetSdkVersion 27
|
2018-05-25 20:23:56 +02:00
|
|
|
versionCode 27
|
2018-06-18 21:11:27 +02:00
|
|
|
versionName "1.6"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2017-12-20 18:54:21 +01:00
|
|
|
zipAlignEnabled true
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 21:11:27 +02:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
|
|
|
property "sonar.organization", "geogeob"
|
|
|
|
property "sonar.host.url", "https://sonarcloud.io"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-24 11:23:31 -05:00
|
|
|
dependencies {
|
2017-12-26 14:16:23 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-05-25 20:23:56 +02: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:percent:27.1.1'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
|
|
|
implementation 'com.android.support:customtabs:27.1.1'
|
|
|
|
implementation 'com.google.android.gms:play-services-ads:15.0.1'
|
2017-12-26 14:16:23 +01:00
|
|
|
implementation 'net.danlew:android.joda:2.9.7'
|
2018-06-17 23:12:16 +02:00
|
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
|
2017-12-26 14:16:23 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-05-25 20:23:56 +02:00
|
|
|
def appCenterSdkVersion = '1.5.1'
|
|
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
|
|
|
implementation "com.microsoft.appcenter:appcenter-push:${appCenterSdkVersion}"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|