Skip to content

Commit

Permalink
Merge pull request #8 from aminography/develop
Browse files Browse the repository at this point in the history
Remove unused plugin and increase app version.
  • Loading branch information
aminography authored Mar 4, 2021
2 parents 73e0142 + a36b19c commit 5c3e27a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import android.os.Parcelable
import kotlinx.parcelize.Parcelize

/**
* The argument for the [MapViewerFragment], sent via
* safe-args.
* The argument for the [MapViewerFragment], sent via deep-link.
*
* @param name the name of the target city.
* @param country the country code of the target city.
Expand Down
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
buildscript {
// semantic versioning
ext.appVersion = [
'major': 1,
'major': 2,
'minor': 0,
'patch': 1
'patch': 0
]
ext.appVersionCode = appVersion.major * 1000000 + appVersion.minor * 1000 + appVersion.patch
ext.appVersionName = "${appVersion.major}.${appVersion.minor}.${appVersion.patch}"
Expand Down Expand Up @@ -54,7 +54,6 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:${versions.android_gradle}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${versions.navigation}"
}
}

Expand Down

0 comments on commit 5c3e27a

Please sign in to comment.