Ionic 5 Full Starter App
  • Enappd Apps
  • Ionic 5 Full App
    • What is Ionic 5 Full App?
    • Template Features
    • Initial Setup
      • Environment Configuration
      • Credentials
    • Running the app
    • Deploying app as PWA
    • Building App on device
    • How to use this template?
      • Copy a module to another app
      • Shared Component & Modules
      • Map Service
    • Beginner Pack Features
      • Firebase
      • Layouts
      • Sidemenus
      • Login and Signups
      • Chat screens
      • Chat Lists
      • Video Playlists
      • Grids and Lists Layouts
    • Startup Pack Features
      • Wordpress
        • Wordpress JSON API Basics
        • Wordpress in Ionic 5 Full App
      • Translation - Multi-language
      • Using Custom Fonts
      • Infinite scroll
      • Content Loaders
      • Pull to refresh
      • List re-ordering
      • Date Pickers
    • Pro Pack Features
      • Phaser Game Framework
      • AdMob Integration
        • AdMob Introduction
        • Setting up Google Admob
        • Integration
      • Social Sharing
      • QR and Barcode Scanning
      • Google Places
      • Google Autocomplete
      • Social Logins
        • Google Login
        • Facebook Login
        • Twitter Login
      • Woo-commerce Integration
    • Removing a Page / Component
    • Removing a plugin
    • FAQs
    • Changelog
    • Troubleshoot
Powered by GitBook
On this page

Was this helpful?

  1. Ionic 5 Full App

Removing a plugin

How to remove an unwanted plugin from the Ionic 5 Full App

Since Ionic 5 Full App is a huge project, you might not need all the plugins for all your requirements. Unnecessary plugins can cause issues with build, or at least cause the build to become heavy.

In most cases, you would want to remove a plugin from the project. Always remove a plugin using cordova CLI

$ ionic cordova plugin rm plugin-name

Sometimes user remove plugins by deleting the plugin folder from plugins folder, but the plugin is defined in config.xml as well as package.json . Removing the plugin using the CLI removes all trace of it.

Modifying dependencies of a plugin

If you are modifying dependencies of a plugin, it is preferable to do it in config.xml and/or package.json

Modifying plugin in plugins folder will not always work because on a new project setup, the plugin will again pick the dependencies from config.xml and/or package.json

PreviousRemoving a Page / ComponentNextFAQs

Last updated 5 years ago

Was this helpful?