Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

F-Droid updates stuck #31

Closed
IzzySoft opened this issue Dec 12, 2020 · 2 comments · Fixed by #32
Closed

F-Droid updates stuck #31

IzzySoft opened this issue Dec 12, 2020 · 2 comments · Fixed by #32
Labels
bug Something isn't working

Comments

@IzzySoft
Copy link

Updates of your app at the F-Droid repository are currently stuck. Reason is the updater no longer can identify new versions, as you're using variables for versionCode and versionName in your build.gradle – but the updater needs the "real values" there (it just parses the build.gradle, it does not execute gradlew).

If you want F-Droid to pick up again,

        versionCode = Apps.versionCode
        versionName = Apps.versionName

must be changed to reflect the real values, currently this would be

        versionCode = 10102
        versionName = "1.0.3"
@rosuH rosuH added the bug Something isn't working label Dec 12, 2020
rosuH added a commit that referenced this issue Dec 23, 2020
[Add]
- Support gallery sending images. Link #30
[Fix]
- Using direct version value instead of build.gradle.kts. Fix #31
rosuH added a commit that referenced this issue Jan 10, 2021
[Add]
- Support gallery sending images. Link #30
[Fix]
- Using direct version value instead of build.gradle.kts. Fix #31
@rosuH rosuH linked a pull request Jan 27, 2021 that will close this issue
Merged
@rosuH rosuH closed this as completed in #32 Jan 27, 2021
@IzzySoft
Copy link
Author

Looks good, thanks! But will only take effect with the next tag, as that's where the updater looks at. You could of course delete the 1.1.2 tag & recreate it at HEAD.

@rosuH
Copy link
Owner

rosuH commented Jan 28, 2021

The 1.1.2 has been re-published. Thank you for your guidance.

rosuH added a commit that referenced this issue Mar 2, 2021
[Add]
- Support gallery sending images. Link #30
[Fix]
- Using direct version value instead of build.gradle.kts. Fix #31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants