Navigation

    UBports Robot Logo

    UBports Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search

    upload an App to Open Store - Error

    App Development
    4
    14
    551
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • 0
      007fred50 last edited by

      Hello,

      I trying to upload an App to openStore. but then i trying to upload a file (.click)

      I got this error here: (This app needs to be reviewed manually, please check your app using the click-review command) what does that main? and how to solve it? πŸ™‚

      Here is my code: https://github.com/007fred50/lockAppStore

      Thanks for your time.
      007fred50

      CiberSheep AppLee 2 Replies Last reply Reply Quote 0
      • CiberSheep
        CiberSheep @007fred50 last edited by

        @007fred50 I did a quick look to permissions (the main reason it would say that) but I think the problem is here
        https://github.com/007fred50/lockAppStore/blob/main/manifest.json.in#L2

        name: has to be all lowcase (and consistent in all the app)

        The domain is different: https://github.com/007fred50/lockAppStore/blob/main/CMakeLists.txt#L15

        Translations might not work properly

        Also:
        https://github.com/007fred50/lockAppStore/blob/main/manifest.json.in#L3

        Description should be a useful phrase to know what the app is about

        I think I would start there and the check locally with clickable review

        Another planet, another time, another universe!

        0 1 Reply Last reply Reply Quote 0
        • AppLee
          AppLee @007fred50 last edited by

          Hi @007fred50
          Your app is probably unconfined. It means that your app has "unlimited" access to the OS which is against the rules.
          I mean you can do it but in order to be published to the Open Store, someone should review manually your app to check if it does not do something evil. πŸ™‚

          I hope that clarifies things for you.
          You can find information in the documentation about how to make your app compliant.
          I have to confess that I don't remember if it's only a matter of apparmor or if there is something else.

          1 Reply Last reply Reply Quote 0
          • 0
            007fred50 @CiberSheep last edited by

            @cibersheep hello,

            i trying to change the name.

            and i got this error here: (sudo clickable review)

            sudo clickable review
            Errors
            ------
             - lint:pkgname_valid
            	'lockAppStore.007fred50' not properly formatted
            Warnings
            --------
             - functional:qml_applicationName_matches_manifest
            	click manifest name 'lockAppStore.007fred50' not found in: qml/Main.qml ('lockappstore.lockappstore'). Application may not work properly when confined.
            	http://askubuntu.com/questions/417371/what-does-functional-qml-applicationname-matches-manifest-mean/417372
            /home/fredy/Desktop/ubuntutouch/lockAppStore-main/build/all/app/lockAppStore.007fred50_1.0.26_all.click: FAIL
            

            From

            "name": "LockAppStore.007fred50",
            to 
            "name": "lockAppStore.007fred50",
            

            Mabye its the 007fred50 tag?

            Thanks for your time πŸ™‚

            CiberSheep 1 Reply Last reply Reply Quote 0
            • CiberSheep
              CiberSheep @007fred50 last edited by

              @007fred50 said in upload an App to Open Store - Error:

              'lockAppStore.007fred50' not found in: qml/Main.qml ('lockappstore.lockappstore')

              I think there is a couple of issues here:

              • lockAppStore is still with uppercases
              • 007fred50 might not work starting by a number
              • This is the appname.userspace defined in the app lockappstore.lockappstore

              Also, you shouldn't use clickable with sudo πŸ˜‰

              Another planet, another time, another universe!

              0 1 Reply Last reply Reply Quote 0
              • 0
                007fred50 @CiberSheep last edited by 007fred50

                @cibersheep hello i got this here:

                Screenshot from 2021-10-28 14-03-58.png

                now it got new error. (the uploaded package does not match the name of the package you are editing)

                Thanks for your time πŸ™‚

                CiberSheep 1 Reply Last reply Reply Quote 0
                • CiberSheep
                  CiberSheep @007fred50 last edited by

                  @007fred50 You may need to create a new app as the name changed and only same name apps are allowed for new revisions.

                  Another planet, another time, another universe!

                  0 1 Reply Last reply Reply Quote 0
                  • 0
                    007fred50 @CiberSheep last edited by

                    @cibersheep thanks for helping me !

                    I follow this steps:

                    You've cloned /home/fredy/.cookiecutters/ut-app-meta-template before. Is it okay to delete and re-clone it? [yes]: 
                    Cloning into 'ut-app-meta-template'...
                    remote: Enumerating objects: 388, done.
                    remote: Counting objects: 100% (272/272), done.
                    remote: Compressing objects: 100% (140/140), done.
                    remote: Total 388 (delta 158), reused 228 (delta 122), pack-reused 116
                    Receiving objects: 100% (388/388), 98.87 KiB | 0 bytes/s, done.
                    Resolving deltas: 100% (216/216), done.
                    Checking connectivity... done.
                    Select Template:
                    1 - QML Only
                    2 - C++
                    3 - Python
                    4 - HTML
                    5 - Go
                    6 - Rust
                    7 - Godot (Precompiled)
                    Choose from 1, 2, 3, 4, 5, 6, 7 [1]: 1
                    Title [App Title]: lockappstore
                    Description [A short description of your app]: lockappstore
                    App Name [appname]: lockappstore
                    Namespace [Demo1N]: lockappstore
                    Maintainer Name [Demo1N]: lockappstore
                    Maintainer Email [email@domain.org]: 007fred50@gmail.com
                    Select License:
                    1 - GNU General Public License v3
                    2 - MIT license
                    3 - BSD license
                    4 - ISC license
                    5 - Apache Software License 2.0
                    6 - Not open source
                    Choose from 1, 2, 3, 4, 5, 6 [1]: 1
                    Copyright Year [2021]: 
                    Git Tag Versioning [n]: 
                    Save as Default [n]:
                    

                    Can i add Maintainer Email [email@domain.org] (007fred50@gmail.com) Number ?

                    i dont know how to insert data then createing File. can you tell me how i can fix that πŸ™‚

                    CiberSheep 1 Reply Last reply Reply Quote 0
                    • CiberSheep
                      CiberSheep @007fred50 last edited by

                      @007fred50 said in upload an App to Open Store - Error:

                      Can i add Maintainer Email [email@domain.org] (007fred50@gmail.com) Number ?

                      I think that should be ok πŸ˜‰

                      I'm sorry but I meant create a new app in the OpenStore website. You might need to contact admin though

                      Have you run clickable review on the click with no error?

                      Another planet, another time, another universe!

                      0 1 Reply Last reply Reply Quote 0
                      • 0
                        007fred50 @CiberSheep last edited by

                        @cibersheep said in upload an App to Open Store - Error:

                        clickable review

                        No error in that command. How can i get an admin?

                        Best Regards
                        007fred50

                        bhdouglass 1 Reply Last reply Reply Quote 0
                        • bhdouglass
                          bhdouglass @007fred50 last edited by

                          @007fred50 It looks like the name of your app is LockAppStore.007fred50 (from this: https://github.com/007fred50/lockAppStore/blob/main/manifest.json.in#L2 ) and the app you are trying to upload to on the OpenStore is just lockappstore. You'll either need to change the name of the app in your manifest.json or create a new entry on the OpenStore under the correct name.

                          open-store.io && bhdouglass.com

                          1 Reply Last reply Reply Quote 0
                          • 0
                            007fred50 last edited by

                            Github forget that.

                            If i make a new project and trying to upload that they say (the uploaded package does not match the name of the package you are editing)

                            I think there are problem with Open Store web paΗ΅es.

                            Thanks for your time πŸ™‚

                            bhdouglass AppLee 2 Replies Last reply Reply Quote 0
                            • bhdouglass
                              bhdouglass @007fred50 last edited by

                              @007fred50 I'm fairly certain it's not an issue with the OpenStore. Can you send me the click you are attempting to upload? As an admin I can see about uploading it on your behalf.

                              open-store.io && bhdouglass.com

                              1 Reply Last reply Reply Quote 0
                              • AppLee
                                AppLee @007fred50 last edited by

                                Hi @007fred50

                                Have you check this page before publishing ?
                                https://open-store.io/submit

                                No need to create another project on Github.
                                You just have to be consistant with the naming of the app.

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post