We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00bba34 commit f0d275eCopy full SHA for f0d275e
CHANGELOG.md
@@ -1,6 +1,11 @@
1
# Changelog
2
All notable changes to this project will be documented in this file.
3
4
+## [0.43.1]
5
+
6
+### Fixed
7
+- Persist shopping list on new uuid's
8
9
## [0.43.0]
10
11
### Added
build.gradle
@@ -31,7 +31,7 @@ allprojects {
31
}
32
33
project.ext {
34
- sdkVersion='0.43.0'
+ sdkVersion='0.43.1'
35
versionCode=1
36
37
compileSdkVersion=30
core/src/main/java/io/snabble/sdk/ShoppingCart.java
@@ -383,6 +383,7 @@ public int getModCount() {
383
384
public void generateNewUUID() {
385
uuid = UUID.randomUUID().toString();
386
+ notifyProductsUpdate(this);
387
388
389
public String getUUID() {
0 commit comments