Skip to content

Commit

Permalink
#207: Fix sonar config
Browse files Browse the repository at this point in the history
  • Loading branch information
Keidan committed Jun 4, 2022
1 parent 314f6ac commit c601a80
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,18 @@ plugins {
}
apply plugin: 'com.android.application'

final VERSION_NAME = '1.30'
final VERSION_CODE = 130

android {
compileSdkVersion 31
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "fr.ralala.hexviewer"
minSdkVersion 23
targetSdkVersion 31
versionCode 130
versionName "1.30"
versionCode VERSION_CODE
versionName VERSION_NAME
}

compileOptions {
Expand Down Expand Up @@ -40,6 +43,7 @@ android {
property "sonar.organization", "keidan"
property "sonar.host.url", "https://sonarcloud.io"
property 'sonar.projectName', 'HexViewer'
property 'sonar.projectVersion', VERSION_NAME
property 'sonar.coverage.exclusions', "**/**"
}
}
Expand Down

0 comments on commit c601a80

Please sign in to comment.