Files
donext/app/build.gradle

66 lines
2.3 KiB
Groovy
Raw Normal View History

2015-11-24 11:23:31 -05:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 31
buildToolsVersion '28.0.3'
2015-11-24 11:23:31 -05:00
defaultConfig {
applicationId "com.wismna.geoffroy.donext"
minSdkVersion 19
targetSdkVersion 31
versionCode 29
versionName "1.8"
javaCompileOptions {
annotationProcessorOptions {
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
2015-11-24 11:23:31 -05:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
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}'
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 {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.5.0-alpha03'
2018-11-13 12:23:13 +01:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.percentlayout:percentlayout:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.browser:browser:1.3.0'
implementation 'net.danlew:android.joda:2.9.7'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
testImplementation 'junit:junit:4.12'
// App Center
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}"
// Room components
def roomVersion = "2.4.0-alpha04"
implementation "androidx.room:room-runtime:$roomVersion"
annotationProcessor "androidx.room:room-compiler:$roomVersion"
testImplementation "androidx.room:room-testing:$roomVersion"
// Lifecycle components
def lifecycleVersion = '2.3.1'
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
}