diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-01-20 20:27:04 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 20:27:04 +0530 |
commit | 3a2cfd22e6575a67b1e8800e9563dd9cbb54a493 (patch) | |
tree | ae87cfc4503e7796ce6b906474f30c666fc88d2c /app/build.gradle.kts | |
parent | 405e1d177265e30bc0ee247a787b3d99939d6c03 (diff) |
Migrate versioning to Gradle plugin and automate version bumps (#1282)
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a1b2583b..cdaca4d7 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -7,6 +7,7 @@ import com.android.build.gradle.internal.api.BaseVariantOutputImpl plugins { id("com.android.application") kotlin("android") + `versioning-plugin` `aps-plugin` `crowdin-plugin` } @@ -26,8 +27,6 @@ android { defaultConfig { applicationId = "dev.msfjarvis.aps" - versionCode = 2_00_00 - versionName = "2.0.0-SNAPSHOT" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } |