From 3f2de2c00ea08c470f7896d288a18ed5fe045e4c Mon Sep 17 00:00:00 2001 From: machiav3lli <40302595+machiav3lli@users.noreply.github.com> Date: Wed, 2 Dec 2020 01:23:20 +0100 Subject: [PATCH] Release 1.2.0: * Update: Migrated from ButterKnife to ViewBinding * Further clean up --- app/build.gradle | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index caded9e..7445953 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,17 +1,13 @@ apply plugin: 'com.android.application' -int versionMajor = 1 -int versionMinor = 1 -int versionPath = 2 - android { - compileSdkVersion 29 + compileSdkVersion 30 defaultConfig { applicationId 'com.machiav3lli.derdiedas' minSdkVersion 24 - targetSdkVersion 29 - versionCode = versionMajor * 1000 + versionMinor * 100 + versionPath - versionName = "${versionMajor}.${versionMinor}.${versionPath}" + targetSdkVersion 30 + versionCode = 1200 + versionName = "1.2.0" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' } buildTypes {