Page 2 of 2 FirstFirst 12
Results 21 to 30 of 30

Thread: Android Chat Application Qt ?

  1. #21
    Join Date
    Nov 2013
    Posts
    1

    Default Re: Android Chat Application Qt ?

    Yes you correct. Demo video it wont be helpful. Thanks for your good reply.Best app to download free movies on android - Top List Best app to download free movies on android Here are the best way to download Movies on your Android Mobile ,it include some Android apps list to download movies Keep in mind that in most of the count


    Added after 38 minutes:


    Good way to download movies on android
    Last edited by d_stranz; 16th March 2021 at 21:11. Reason: removed URL

  2. #22
    Join Date
    Jan 2011
    Posts
    127
    Thanks
    42
    Thanked 4 Times in 4 Posts
    Qt products
    Qt4
    Platforms
    Windows

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by wysota View Post
    I think this depends on a case-by-case basis. I've seen projects run on Android without any effort.
    It is damn cool to run a Qt project on android without any effort(thanks for the efforts of Qt team)
    but Qt on android still far from mature(Qt5.2 beta1) in my opinion

    1 : unstable, some apps can't work properly(ex : crash, mul-function, image broken, can't open camera) or very slow(ex : maroon)
    2 : lack of some basic yet important features, like how to get the
    default folder location of image, music;in-apps purchase and so on

    Qt team said Qt5.2 will provide users a mature android port
    Hope that release version of Qt5.2 could give us a stable Qt on android

  3. #23
    Join Date
    Dec 2017
    Posts
    4
    Qt products
    Qt5 Qt/Embedded
    Platforms
    MacOS X Windows Android

    Lightbulb Re: Android Chat Application Qt ?

    V-Play Engine for Qt-based apps and games comes with many components to make mobile development easier. For example, you can integrate a chat service to build your own cross-platform messenger with a few lines of code:


    import VPlay 2.0
    import VPlayApps 1.0

    App {

    // app navigation
    Navigation {
    NavigationItem {
    title: "User Profile"
    icon: IconType.user
    NavigationStack {
    initialPage: socialView.profilePage
    }
    }

    NavigationItem {
    title: "Chat"
    icon: IconType.comment
    NavigationStack {
    initialPage: socialView.inboxPage
    }
    }
    }

    // service configuration
    VPlayGameNetwork {
    id: gameNetwork
    gameId: 285
    secret: "AmazinglySecureGameSecret"
    multiplayerItem: multiplayer
    }

    VPlayMultiplayer {
    id: multiplayer
    appKey: "dd7f1761-038c-4722-9f94-812d798cecfb"
    pushKey: "a4780578-5aad-4590-acbe-057c232913b5"
    gameNetworkItem: gameNetwork
    }

    // social view setup
    SocialView {
    id: socialView
    gameNetworkItem: gameNetwork
    multiplayerItem: multiplayer
    visible: false // we show the view pages on our custom app navigation
    }
    }


    You can find more information here:
    https://v-play.net/cross-platform-app-development/how-to-add-chat-service-and-cross-platform-leaderboard-with-user-profiles-to-your-ios-or-android-app#in-app-chat-and-cloud-storage

  4. #24
    Join Date
    Dec 2017
    Posts
    4
    Qt products
    Qt5 Qt/Embedded
    Platforms
    MacOS X Windows Android

    Default Re: Android Chat Application Qt ?

    Hi!

    V-Play Engine for Qt-based apps and games offers many components to make mobile development easier. For example, you can create a messenger app using the included chat service with only a few lines of code:


    import VPlay 2.0
    import VPlayApps 1.0

    App {

    // app navigation
    Navigation {
    NavigationItem {
    title: "User Profile"
    icon: IconType.user
    NavigationStack {
    initialPage: socialView.profilePage
    }
    }

    NavigationItem {
    title: "Chat"
    icon: IconType.comment
    NavigationStack {
    initialPage: socialView.inboxPage
    }
    }
    }

    // service configuration
    VPlayGameNetwork {
    id: gameNetwork
    gameId: 285
    secret: "AmazinglySecureGameSecret"
    multiplayerItem: multiplayer
    }

    VPlayMultiplayer {
    id: multiplayer
    appKey: "dd7f1761-038c-4722-9f94-812d798cecfb"
    pushKey: "a4780578-5aad-4590-acbe-057c232913b5"
    gameNetworkItem: gameNetwork
    }

    // social view setup
    SocialView {
    id: socialView
    gameNetworkItem: gameNetwork
    multiplayerItem: multiplayer
    visible: false // we show the view pages on our custom app navigation
    }
    }


    For more information, please see:
    https://v-play.net/cross-platform-ap...-cloud-storage

  5. #25
    Join Date
    Mar 2021
    Posts
    3
    Qt products
    Qt5
    Platforms
    Windows Android

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by toufic.dbouk View Post
    Hello everyone,
    just a question ,no need for technical details, is it better to build an android chat application likeogwhatsApp , Viber, etc... with good looking GUI using Qt for android ?
    or a person has to develop it using Java and Eclipse ( the best out there for android development ).
    I know the thread is too old but I think you are absolutely right about developing an chat app like WhatsApp for qt because it is really helpful for users to contact each other easily and I hope our seniors are implement on this soon.
    Last edited by Edith; 1st March 2021 at 13:39. Reason: spelling corrections

  6. #26

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by Edith View Post
    I know the thread is too old but I think you are absolutely right about developing an chat app like WhatsApp for qt because it is really helpful for users to contact each other easily and I hope our seniors are implement on this soon.
    How much time it will required for application?

  7. #27

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by Kosta View Post
    Yes you correct. Demo video it wont be helpful. Thanks for your good reply.Best app to download free movies on android - Top List Best app to download free movies on android Here are the best way to download Movies on your Android Mobile ,it include some Android apps list to download movies Keep in mind that in most of the count


    Added after 38 minutes:


    Good way to download movies on android
    I am waiting for the reply...
    Last edited by d_stranz; 16th March 2021 at 21:10. Reason: removed URL

  8. #28
    Join Date
    Jan 2008
    Location
    Alameda, CA, USA
    Posts
    5,229
    Thanks
    302
    Thanked 864 Times in 851 Posts
    Qt products
    Qt5
    Platforms
    Windows

    Default Re: Android Chat Application Qt ?

    I am waiting for the reply...
    Do you realize that "Kosta" was a spammer who made only one post in this forum in 2013? You will be waiting a long, long time for any reply.
    <=== The Great Pumpkin says ===>
    Please use CODE tags when posting source code so it is more readable. Click "Go Advanced" and then the "#" icon to insert the tags. Paste your code between them.

  9. #29
    Join Date
    Mar 2021
    Posts
    3
    Qt products
    Qt5
    Platforms
    Windows Android

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by babanaqash View Post
    How much time it will required for application?
    I'm sorry, I think you should ask this question to anyone who is thinking of making such an app

  10. #30

    Default Re: Android Chat Application Qt ?

    Quote Originally Posted by Edith View Post
    I know the thread is too old but I think you are absolutely right about developing an chat app like GT WhatsApp for qt because it is really helpful for users to contact each other easily and I hope our seniors are implement on this soon.
    It will take a lot of time as well as you will need huge investment if you want to create an application like whatsapp.

Similar Threads

  1. Develop an Chat Application as use QT
    By phuong_90 in forum Qt Programming
    Replies: 2
    Last Post: 5th November 2011, 04:04
  2. Chat application using web services
    By user_mail07 in forum Qt Programming
    Replies: 2
    Last Post: 4th April 2011, 19:52
  3. How to build a Chat application in Qt??
    By Gokulnathvc in forum Newbie
    Replies: 6
    Last Post: 23rd March 2011, 08:48
  4. Specialised Network Chat Application
    By TropicalPenguin in forum Jobs
    Replies: 0
    Last Post: 28th September 2010, 23:40
  5. which class i should used to make chat application ??
    By kunalnandi in forum Qt Programming
    Replies: 3
    Last Post: 3rd May 2008, 10:33

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.