Error in uploading ionic app

2

When I pass the command on my ionic upload terminal presents the error below and does not upload the file in the ionic view

ionic upload
Uploading app...

An error occurred uploading the build: An error occurred uploading your application - App ID 348ffe7e does not ex
ist

An error occurred uploading your application - App ID 348ffe7e does not exist (CLI v2.2.1)

Your system information:

 ordova CLI: 6.5.0
Ionic CLI Version: 2.2.1
Ionic App Lib Version: 2.2.0
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Windows 10
Node Version: v6.9.2
Xcode version: Not installed

How do I resolve this?

    
asked by anonymous 22.03.2017 / 19:53

1 answer

2

If you have not sent your simulation application once, here are the steps that should solve your problem:

  • Open the ionic.project.json file that is at the root of your project
  • Change your app_id to empty (delete existing)
  • Try uploading again with ionic upload
  • If you already have the App ID registered in your profile, it has already been simulated one or more times, execute the commands below:

    # ionic io init
    # ionic upload
    

    See the documentation configuration details .

        
    28.03.2017 / 05:39