diff --git a/MVVM/.vs/MVVM/DesignTimeBuild/.dtbcache.v2 b/MVVM/.vs/MVVM/DesignTimeBuild/.dtbcache.v2
index 5b43fc5a..f74cfff9 100644
Binary files a/MVVM/.vs/MVVM/DesignTimeBuild/.dtbcache.v2 and b/MVVM/.vs/MVVM/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/MVVM/.vs/MVVM/FileContentIndex/10664f03-d9ab-403b-9832-8f7e5c693816.vsidx b/MVVM/.vs/MVVM/FileContentIndex/10664f03-d9ab-403b-9832-8f7e5c693816.vsidx
new file mode 100644
index 00000000..4c9ac3be
Binary files /dev/null and b/MVVM/.vs/MVVM/FileContentIndex/10664f03-d9ab-403b-9832-8f7e5c693816.vsidx differ
diff --git a/MVVM/.vs/MVVM/FileContentIndex/5d7a46d6-426c-4ef2-94cb-975c590f0358.vsidx b/MVVM/.vs/MVVM/FileContentIndex/5d7a46d6-426c-4ef2-94cb-975c590f0358.vsidx
deleted file mode 100644
index 13a5b61e..00000000
Binary files a/MVVM/.vs/MVVM/FileContentIndex/5d7a46d6-426c-4ef2-94cb-975c590f0358.vsidx and /dev/null differ
diff --git a/MVVM/.vs/MVVM/v17/.futdcache.v2 b/MVVM/.vs/MVVM/v17/.futdcache.v2
index 156a8d6f..046145f1 100644
Binary files a/MVVM/.vs/MVVM/v17/.futdcache.v2 and b/MVVM/.vs/MVVM/v17/.futdcache.v2 differ
diff --git a/MVVM/.vs/MVVM/v17/.suo b/MVVM/.vs/MVVM/v17/.suo
index fad443b7..29e23ab9 100644
Binary files a/MVVM/.vs/MVVM/v17/.suo and b/MVVM/.vs/MVVM/v17/.suo differ
diff --git a/MVVM/.vs/ProjectEvaluation/mvvm.metadata.v7.bin b/MVVM/.vs/ProjectEvaluation/mvvm.metadata.v7.bin
index d7817ed4..69ffa9fb 100644
Binary files a/MVVM/.vs/ProjectEvaluation/mvvm.metadata.v7.bin and b/MVVM/.vs/ProjectEvaluation/mvvm.metadata.v7.bin differ
diff --git a/MVVM/.vs/ProjectEvaluation/mvvm.projects.v7.bin b/MVVM/.vs/ProjectEvaluation/mvvm.projects.v7.bin
index 5e710fb8..2feeee5f 100644
Binary files a/MVVM/.vs/ProjectEvaluation/mvvm.projects.v7.bin and b/MVVM/.vs/ProjectEvaluation/mvvm.projects.v7.bin differ
diff --git a/MVVM/MVVM/Pages/Component/Livre.xaml.cs b/MVVM/MVVM/Pages/Component/Livre.xaml.cs
index eae8e07f..f016ccf9 100644
--- a/MVVM/MVVM/Pages/Component/Livre.xaml.cs
+++ b/MVVM/MVVM/Pages/Component/Livre.xaml.cs
@@ -12,7 +12,14 @@ public partial class Livre : ContentView
public static readonly BindableProperty ImageCompProperty = BindableProperty.Create(nameof(ImageComp), typeof(string), typeof(Livre), string.Empty);
public static readonly BindableProperty AuteurCompProperty = BindableProperty.Create(nameof(AuteurComp), typeof(string), typeof(string),null);
public static readonly BindableProperty UserRatingCompProperty = BindableProperty.Create(nameof(UserRatingComp), typeof(float), typeof(Livre), null);
+ //public static readonly BindableProperty StatutCompProperty = BindableProperty.Create(nameof(StatusComp),typeof(Status), typeof(Livre), null);
+ /*
+ public Status StatusComp
+ {
+ get => (Status)GetValue(Livre.StatutCompProperty);
+ set => SetValue(Livre.StatutCompProperty, value);
+ }*/
public string TitreComp
@@ -67,6 +74,7 @@ public partial class Livre : ContentView
ImageXAML.SetBinding(Image.SourceProperty, new Binding(nameof(ImageComp), source: this));
AuteurXAML.SetBinding(Label.TextProperty, new Binding(nameof(AuteurComp), source: this));
NoteXAML.SetBinding(Label.TextProperty, new Binding(nameof (UserRatingComp), source: this));
+ //StatutXAML.SetBinding (Label.TextProperty, new Binding(nameof(StatusComp), source: this));
}
diff --git a/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.dll b/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.dll
index 194cc78a..e9605eea 100644
Binary files a/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.dll and b/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.dll differ
diff --git a/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.pdb b/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.pdb
index d7737ac5..d732817d 100644
Binary files a/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.pdb and b/MVVM/MVVM/bin/Debug/net7.0-android/MVVM.pdb differ
diff --git a/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.dll b/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.dll
index 13e8d691..d7c5434c 100644
Binary files a/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.dll and b/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.dll differ
diff --git a/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.pdb b/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.pdb
index 351379e4..54412683 100644
Binary files a/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.pdb and b/MVVM/MVVM/bin/Debug/net7.0-android/Wrapper.pdb differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.csproj.AssemblyReference.cache b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.csproj.AssemblyReference.cache
index c16cc6a3..de8b408f 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.csproj.AssemblyReference.cache and b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.csproj.AssemblyReference.cache differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.dll b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.dll
index 194cc78a..e9605eea 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.dll and b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.dll differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.pdb b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.pdb
index d7737ac5..d732817d 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.pdb and b/MVVM/MVVM/obj/Debug/net7.0-android/MVVM.pdb differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/android-arm64/MVVM.csproj.AssemblyReference.cache b/MVVM/MVVM/obj/Debug/net7.0-android/android-arm64/MVVM.csproj.AssemblyReference.cache
index a59db205..8bf74e7b 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/android-arm64/MVVM.csproj.AssemblyReference.cache and b/MVVM/MVVM/obj/Debug/net7.0-android/android-arm64/MVVM.csproj.AssemblyReference.cache differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.dll b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.dll
index 194cc78a..e9605eea 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.dll and b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.dll differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.pdb b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.pdb
index d7737ac5..d732817d 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.pdb and b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/MVVM.pdb differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.dll b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.dll
index 13e8d691..d7c5434c 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.dll and b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.dll differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.pdb b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.pdb
index 351379e4..54412683 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.pdb and b/MVVM/MVVM/obj/Debug/net7.0-android/android/assets/Wrapper.pdb differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-android/devices.cache b/MVVM/MVVM/obj/Debug/net7.0-android/devices.cache
index 54e95596..7bf7f2d0 100644
--- a/MVVM/MVVM/obj/Debug/net7.0-android/devices.cache
+++ b/MVVM/MVVM/obj/Debug/net7.0-android/devices.cache
@@ -1 +1 @@
-arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:1arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2
\ No newline at end of file
+arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:1arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:4arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:2arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3arm64-v8a30product:a70qeea;model:SM_A705FN;device:a70q;transport_id:3
\ No newline at end of file
diff --git a/MVVM/MVVM/obj/Debug/net7.0-ios/iossimulator-x64/MVVM.csproj.AssemblyReference.cache b/MVVM/MVVM/obj/Debug/net7.0-ios/iossimulator-x64/MVVM.csproj.AssemblyReference.cache
index db0bf844..7389b2b8 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-ios/iossimulator-x64/MVVM.csproj.AssemblyReference.cache and b/MVVM/MVVM/obj/Debug/net7.0-ios/iossimulator-x64/MVVM.csproj.AssemblyReference.cache differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-maccatalyst/maccatalyst-x64/MVVM.csproj.AssemblyReference.cache b/MVVM/MVVM/obj/Debug/net7.0-maccatalyst/maccatalyst-x64/MVVM.csproj.AssemblyReference.cache
index 3a23777e..968c54a4 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-maccatalyst/maccatalyst-x64/MVVM.csproj.AssemblyReference.cache and b/MVVM/MVVM/obj/Debug/net7.0-maccatalyst/maccatalyst-x64/MVVM.csproj.AssemblyReference.cache differ
diff --git a/MVVM/MVVM/obj/Debug/net7.0-windows10.0.19041.0/win10-x64/MVVM.csproj.AssemblyReference.cache b/MVVM/MVVM/obj/Debug/net7.0-windows10.0.19041.0/win10-x64/MVVM.csproj.AssemblyReference.cache
index 77ff40ed..ad88ea12 100644
Binary files a/MVVM/MVVM/obj/Debug/net7.0-windows10.0.19041.0/win10-x64/MVVM.csproj.AssemblyReference.cache and b/MVVM/MVVM/obj/Debug/net7.0-windows10.0.19041.0/win10-x64/MVVM.csproj.AssemblyReference.cache differ
diff --git a/MVVM/Stub/obj/Debug/net7.0/Stub.csproj.AssemblyReference.cache b/MVVM/Stub/obj/Debug/net7.0/Stub.csproj.AssemblyReference.cache
index 92bda52c..3fea59f0 100644
Binary files a/MVVM/Stub/obj/Debug/net7.0/Stub.csproj.AssemblyReference.cache and b/MVVM/Stub/obj/Debug/net7.0/Stub.csproj.AssemblyReference.cache differ
diff --git a/MVVM/ToolKit/obj/Debug/net7.0/ToolKit.csproj.AssemblyReference.cache b/MVVM/ToolKit/obj/Debug/net7.0/ToolKit.csproj.AssemblyReference.cache
index 43c6bd97..4540536b 100644
Binary files a/MVVM/ToolKit/obj/Debug/net7.0/ToolKit.csproj.AssemblyReference.cache and b/MVVM/ToolKit/obj/Debug/net7.0/ToolKit.csproj.AssemblyReference.cache differ
diff --git a/MVVM/Wrapper/BooksViewModel.cs b/MVVM/Wrapper/BooksViewModel.cs
index 8120b892..e3b18610 100644
--- a/MVVM/Wrapper/BooksViewModel.cs
+++ b/MVVM/Wrapper/BooksViewModel.cs
@@ -23,7 +23,6 @@ namespace Wrapper
// Liste de books
-
public ObservableCollection Books = new ObservableCollection();
public ObservableCollection GroupBooks { get; private set; } = new ObservableCollection();
diff --git a/MVVM/Wrapper/MyLibraryViewModel.cs b/MVVM/Wrapper/MyLibraryViewModel.cs
index f7882b16..7f31bd11 100644
--- a/MVVM/Wrapper/MyLibraryViewModel.cs
+++ b/MVVM/Wrapper/MyLibraryViewModel.cs
@@ -19,13 +19,29 @@ namespace Wrapper
private void LoadDataFonction()
{
- var result = UserLibraryManager.GetBooksFromCollection(0,0);
+ var result = UserLibraryManager.GetBooksFromCollection(0,(int)UserLibraryManager.GetBooksFromCollection(0,0).Result.Item1);
// Books
- nbBooks = result.Result.Item1.ToString();
+ long nb = result.Result.Item1;
+ if (nb == 0 )
+ {
+ nbBooks = " ";
+ }
+ else
+ {
+ nbBooks = nb.ToString();
+ }
// Loan
- nbLoans = UserLibraryManager.GetPastLoans(0, 0).Result.Item1.ToString();
+ nb = UserLibraryManager.GetPastLoans(0, 0).Result.Item1;
+ if (nb == 0)
+ {
+ nbLoans = " ";
+ }
+ else
+ {
+ nbLoans = nb.ToString();
+ }
// ToBeRead
int compteur = 0;
@@ -36,7 +52,14 @@ namespace Wrapper
compteur++;
}
}
- nbToBeRead = compteur.ToString();
+ if ( compteur == 0 )
+ {
+ nbToBeRead = " ";
+ }
+ else
+ {
+ nbToBeRead = compteur.ToString();
+ }
// Favorite
nbFavorite = UserLibraryManager.GetFavoritesBooks(0, 0).Result.Item1.ToString();
diff --git a/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.dll b/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.dll
index 13e8d691..d7c5434c 100644
Binary files a/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.dll and b/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.dll differ
diff --git a/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.pdb b/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.pdb
index 351379e4..54412683 100644
Binary files a/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.pdb and b/MVVM/Wrapper/bin/Debug/net7.0/Wrapper.pdb differ
diff --git a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.csproj.AssemblyReference.cache b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.csproj.AssemblyReference.cache
index 18d6da35..d054c986 100644
Binary files a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.csproj.AssemblyReference.cache and b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.csproj.AssemblyReference.cache differ
diff --git a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.dll b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.dll
index 13e8d691..d7c5434c 100644
Binary files a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.dll and b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.dll differ
diff --git a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.pdb b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.pdb
index 351379e4..54412683 100644
Binary files a/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.pdb and b/MVVM/Wrapper/obj/Debug/net7.0/Wrapper.pdb differ