'News Aggregator consistently rejected due to | Guideline 4.2.2 - Design - Minimum Functionality | App Store Connect

I have been working on a news aggregator that uses some natural language processing to condense headlines into more simple and easy-to-read sentences. Unfortunately, every time I try and push to the store, I get hit with Guideline 4.2.2. Each time I get rejected I add more and more functionality but It does not seem like this is doing anything. I have added a lot of native functionality as well as a way to share the information with others. What do other news aggregators do that I am not?

Any help would be much appreciated.



Solution 1:[1]

The problem was that actually I needed to install the code command to PATH as specified in the official VS Code documentation:

https://code.visualstudio.com/docs/setup/mac

  1. Launch VS Code.
  2. Open the Command Palette (Cmd+Shift+P) and type shell command to find the Shell Command: Install 'code' command in PATH command.
  3. Restart the terminal for the new $PATH value to take effect.

So now you'll be able to type code . in any folder to start editing files in that folder, just like in my atom . example

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Devendra Voss