mirror of
https://github.com/wismna/DoNext.git
synced 2025-10-03 07:30:13 -04:00

Removed task layout change functionality Moved all informative text to the bottom Priority now shows icons instead of changing text color and weight Corrected bug when editing any item that would replace first item information
47 lines
1.6 KiB
Groovy
47 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig {
|
|
applicationId "com.wismna.geoffroy.donext"
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
versionCode 27
|
|
versionName "1.7"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
zipAlignEnabled true
|
|
}
|
|
}
|
|
}
|
|
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 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:percent:28.0.0'
|
|
implementation 'com.android.support:recyclerview-v7:28.0.0'
|
|
implementation 'com.android.support:customtabs:28.0.0'
|
|
implementation 'net.danlew:android.joda:2.9.7'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
testImplementation 'junit:junit:4.12'
|
|
def appCenterSdkVersion = '1.9.0'
|
|
implementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
|
|
implementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"
|
|
}
|