2015-11-24 11:23:31 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-10-31 14:17:15 +01:00
|
|
|
compileSdkVersion 28
|
|
|
|
buildToolsVersion '28.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
|
2018-10-31 14:17:15 +01:00
|
|
|
targetSdkVersion 28
|
2018-11-08 22:10:40 +01:00
|
|
|
versionCode 28
|
2018-11-08 18:38:54 +01:00
|
|
|
versionName "1.7"
|
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-07-23 16:51:27 +02:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
|
|
|
property 'sonar.host.url', '#{sonar.host.url}'
|
|
|
|
property 'sonar.login', '#{sonar.login}'
|
|
|
|
property 'sonar.organization', '#{sonar.organization}'
|
2018-11-08 12:15:29 +01:00
|
|
|
property 'sonar.projectKey', '#{sonar.projectkey}'
|
2018-11-08 15:26:54 +01:00
|
|
|
property 'sonar.branch', 'master'
|
2018-07-23 16:51:27 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
dependencies {
|
2017-12-26 14:16:23 +01:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2018-11-13 12:23:13 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
|
|
implementation 'com.google.android.material:material:1.1.0-alpha01'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.percentlayout:percentlayout:1.0.0'
|
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
2017-12-26 14:16:23 +01:00
|
|
|
implementation 'net.danlew:android.joda:2.9.7'
|
2018-11-13 12:23:13 +01:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha2'
|
2017-12-26 14:16:23 +01:00
|
|
|
testImplementation 'junit:junit:4.12'
|
2018-11-08 15:06:51 +01:00
|
|
|
def appCenterSdkVersion = '1.9.0'
|
2018-05-25 20:23:56 +02:00
|
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|