2015-11-24 11:23:31 -05:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2023-12-19 22:45:40 +01:00
|
|
|
compileSdk 34
|
2015-11-24 11:23:31 -05:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.wismna.geoffroy.donext"
|
2023-12-19 22:45:40 +01:00
|
|
|
minSdkVersion 21
|
|
|
|
targetSdkVersion 34
|
|
|
|
versionCode 30
|
|
|
|
versionName "1.9"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2023-12-19 22:45:40 +01:00
|
|
|
namespace 'com.wismna.geoffroy.donext'
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
|
|
}
|
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'])
|
2023-12-19 22:45:40 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2023-12-21 11:11:34 +01:00
|
|
|
implementation 'com.google.android.material:material:1.11.0'
|
2018-11-13 12:23:13 +01:00
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
|
|
implementation 'androidx.percentlayout:percentlayout:1.0.0'
|
2023-12-19 22:45:40 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.2'
|
|
|
|
implementation 'androidx.browser:browser:1.7.0'
|
|
|
|
implementation 'net.danlew:android.joda:2.12.5'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2023-12-21 11:11:34 +01:00
|
|
|
implementation 'androidx.preference:preference:1.2.1'
|
2023-12-19 22:45:40 +01:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2018-11-15 18:37:19 +01:00
|
|
|
|
|
|
|
// App Center
|
2023-12-19 22:45:40 +01:00
|
|
|
def appCenterSdkVersion = '5.0.4'
|
2018-05-25 20:23:56 +02:00
|
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
2018-11-15 18:37:19 +01:00
|
|
|
|
|
|
|
// Lifecycle components
|
2023-12-19 22:45:40 +01:00
|
|
|
def lifecycleVersion = '2.6.2'
|
2021-09-03 20:10:19 +02:00
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycleVersion"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycleVersion"
|
|
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
|
2015-11-24 11:23:31 -05:00
|
|
|
}
|