Dependency Injection with FreshMvvm in Xamarin.Forms

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 29

  • @incompetentdev5830
    @incompetentdev5830 2 роки тому

    Thanks for the video mate. I've been thrown into a Xamarin project at work and your videos have been a lifesaver.

    • @jfversluis
      @jfversluis  2 роки тому +1

      Sounds like you're having fun at work! :D Glad to hear my videos have been useful, let me know if you need anything!

  • @excellencepere4551
    @excellencepere4551 3 роки тому

    Awesome, looking forward to any video you provide on freshmvvm ..

    • @jfversluis
      @jfversluis  3 роки тому +1

      There are already a couple now!

  • @MarcAmposta
    @MarcAmposta 3 роки тому

    This is great Gerald. I got one question, since FreshMvvm package is only on the shared project. How would you register services from platform projects?

  • @jeanchampion4340
    @jeanchampion4340 3 роки тому

    Really Love your work Gerald. You make Mobile development so easy to understand. Super Impactfull!

  • @larsstecker804
    @larsstecker804 3 роки тому +1

    Hi Gerald, thank you for the great content.
    In every Demo of FreshMVVM Michael Ridland uses Fody, can you make a video on that and explain why its used and how to use it?

    • @jfversluis
      @jfversluis  3 роки тому +2

      Ah good one! I should definitely make a video on that, I'll add it to the list!

    • @larsstecker804
      @larsstecker804 3 роки тому

      @@jfversluis Nice

  • @wacm
    @wacm 3 роки тому

    Good stuffs... As always... Keep up the great work....

  • @ThaveeshaKannangara
    @ThaveeshaKannangara 3 роки тому

    Interesting video. Lately got stucked with flyout menu with fresh mvvm. If possible do small video on that.

    • @jfversluis
      @jfversluis  3 роки тому +1

      What did you get stuck with?

    • @ThaveeshaKannangara
      @ThaveeshaKannangara 3 роки тому

      @@jfversluis when navigating from login page to AppShell page which consists of flyout menu app gets stuck. and it was a viewmodel to viewmodel navigation.(fresh mvvm)

  • @Khan89aamir
    @Khan89aamir 3 роки тому +1

    Hi Gerald, nice video... I have uploaded app into app store but they were rejected due to network connectivity issue... They are not able to call our API hosted on static IP address with specific port no. And I'm using network IPv4... Could you please help me?

    • @jfversluis
      @jfversluis  3 роки тому +1

      Thanks! I think it will be really hard to help without knowing any of the details I’m afraid. Sounds like you need to make sure that server is accessible from everywhere and you app is useable by anyone. I think you can contact Apple for more details if needed

    • @Khan89aamir
      @Khan89aamir 3 роки тому +1

      @@jfversluis thank you for your reply... Yess this is static IP address and accessible from cellular network as well as WIFI... And I also replied to App store review team but didn't provide me proper response.

    • @jfversluis
      @jfversluis  3 роки тому +1

      @@Khan89aamir sorry to hear that but I really don’t know what to tell you. If they say they can’t access it there or either a problem with it or a problem on their side. I’m afraid there is not much I can do to help there.

    • @Khan89aamir
      @Khan89aamir 3 роки тому

      @@jfversluis thank you for your reply... I found that app store need response from IPv6 network instead of IPv4

    • @jfversluis
      @jfversluis  3 роки тому +1

      @@Khan89aamir glad you figured it out!

  • @chandrasekharpatra6317
    @chandrasekharpatra6317 3 роки тому

    Dear Gerald....Great demo....I wanted to know how to implement root checker of the device in order to protect from securiry concern in Xamarin Forms app. Can you plz help on this...Thanks

    • @jfversluis
      @jfversluis  3 роки тому

      You might want to have a look at this library: github.com/nmilcoff/BreachDetector

  • @DigitalElectronicSchool
    @DigitalElectronicSchool 3 роки тому

    Question out of current subject but it's big improvement ..
    Should I use outh token JWT or no need .. another mean .. can any brogrammer find my API inside my xamarin app after release to APK
    With no security any one can insert any wrong data to my database?!
    What should I do?!
    I can't find how to secure my API ..
    I have username and password instead my database.
    Can you help me.. please
    I'm not good in English but I think you understand the meaning

  • @Tamer_Ali
    @Tamer_Ali 3 роки тому

    Hi Gerald,
    How to do End to End Encryption when using SignalR to encrypt the chat messages "like What's App do"?

    • @jfversluis
      @jfversluis  3 роки тому

      In theory it's simple: the decryption key is only on the devices of the user. Before a message is sent it is encrypted and in its encrypted form it's saved on the server. Then when the other user retrieves the message they will also have the key, only locally on their device, and they can decrypt the message. How to implement it... Good question ;)