mirror of
https://github.com/wismna/DoNext.git
synced 2025-10-03 07:30:13 -04:00
70 lines
2.5 KiB
Groovy
70 lines
2.5 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 34
|
|
|
|
defaultConfig {
|
|
applicationId "com.wismna.geoffroy.donext"
|
|
minSdkVersion 21
|
|
targetSdkVersion 34
|
|
versionCode 30
|
|
versionName "1.9"
|
|
javaCompileOptions {
|
|
annotationProcessorOptions {
|
|
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]
|
|
}
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
namespace 'com.wismna.geoffroy.donext'
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
}
|
|
}
|
|
sonarqube {
|
|
properties {
|
|
property 'sonar.host.url', '#{sonar.host.url}'
|
|
property 'sonar.login', '#{sonar.login}'
|
|
property 'sonar.organization', '#{sonar.organization}'
|
|
property 'sonar.projectKey', '#{sonar.projectkey}'
|
|
property 'sonar.branch', 'master'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.percentlayout:percentlayout:1.0.0'
|
|
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'
|
|
implementation 'androidx.preference:preference:1.2.1'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
|
|
// App Center
|
|
def appCenterSdkVersion = '5.0.4'
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
|
|
|
// Room components
|
|
def roomVersion = "2.6.1"
|
|
implementation "androidx.room:room-runtime:$roomVersion"
|
|
annotationProcessor "androidx.room:room-compiler:$roomVersion"
|
|
testImplementation "androidx.room:room-testing:$roomVersion"
|
|
|
|
// Lifecycle components
|
|
def lifecycleVersion = '2.6.2'
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel:$lifecycleVersion"
|
|
implementation "androidx.lifecycle:lifecycle-livedata:$lifecycleVersion"
|
|
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion"
|
|
}
|