Results 1 to 20 of 30

Thread: Android Chat Application Qt ?

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    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

  2. #2
    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

  3. #3
    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

Similar Threads

  1. Develop an Chat Application as use QT
    By phuong_90 in forum Qt Programming
    Replies: 2
    Last Post: 5th November 2011, 03:04
  2. Chat application using web services
    By user_mail07 in forum Qt Programming
    Replies: 2
    Last Post: 4th April 2011, 18:52
  3. How to build a Chat application in Qt??
    By Gokulnathvc in forum Newbie
    Replies: 6
    Last Post: 23rd March 2011, 07:48
  4. Specialised Network Chat Application
    By TropicalPenguin in forum Jobs
    Replies: 0
    Last Post: 28th September 2010, 22:40
  5. which class i should used to make chat application ??
    By kunalnandi in forum Qt Programming
    Replies: 3
    Last Post: 3rd May 2008, 09: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
  •  
Qt is a trademark of The Qt Company.