Skip to content

Commit

Permalink
Release v3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisguse committed Apr 12, 2020
1 parent adbad04 commit e49a425
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README_RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

1. Get next _version code_ (master branch): `git rev-list HEAD --count master`
2. Decide on _version name_ (semantic versioning)
3. Manually update _version code_ and _version name_ in `AndroidManifest.xml` (used by FDroid)
3. Manually update _version code_ and _version name_ in `build.gradle`
4. Create changelog (`_version code_.txt`)
5. Create commit with all changes
6. Tag newly create commit with _version name_ (e.g., v3.2.1)
Expand Down
7 changes: 5 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,14 @@ android {
applicationName: "@string/app_name"
]

//Useful for debugging.
//versionCode getVersionCode()
versionCode 3333
//versionCode getVersionCode() //Useful for debugging.
versionName "v3.6.1"

buildConfigField "String", "VERSION_NAME_FULL", "\"${getVersionName()}\""



minSdkVersion 21
targetSdkVersion 29

Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/3333.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
v3.6.1: OpenTracks

Bugfix:
- KMZ import: store correct picture path
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Sun Apr 12 18:41:12 CEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
4 changes: 1 addition & 3 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.dennisguse.opentracks"
android:installLocation="auto"
android:versionCode="3330"
android:versionName="v3.6.0"> <!-- For FDroid. -->
android:installLocation="auto">
<!-- Permission to initialize services -->
<application
android:name=".Startup"
Expand Down

0 comments on commit e49a425

Please sign in to comment.