Skip to content

Commit

Permalink
update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
xibr committed Aug 20, 2022
1 parent d692b11 commit e20050b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ def versionBuild = 0 // bump for dogfood builds, public betas, etc.

android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "org.yausername.dvd"
minSdkVersion 21
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 29
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
Expand Down Expand Up @@ -48,6 +49,11 @@ android {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}

lintOptions {
abortOnError false
checkReleaseBuilds false
}

splits {
abi {
enable !project.hasProperty('noSplits')
Expand All @@ -62,7 +68,7 @@ android {
dependencies {
def nav_version = "2.3.0-rc01"
def material_version = "1.3.0-alpha01"
def room_version = "2.4.3"
def room_version = "2.5.0-alpha01"
def arch_lifecycle_version = "2.2.0"
def coroutines_version = "1.3.4"
def work_version = "2.3.4"
Expand Down

0 comments on commit e20050b

Please sign in to comment.