How to add a local cordova plugin with ionic / ionic 2 / ionic 3 / ionic 4 / ionic 5?

To add a local plugin with ionic : ionic cordova plugin add /path/to/my/plugin/my.plugin.folder.here/ to remove it : ionic cordova plugin remove my.plugin.folder.here But to update it it’s another problem. Actually I’m removing and installing it again after each edit. Good luck 😉 EDIT If you are using a previous version of ionic cli, and it … Read more

Is it possible to host an Eclipse update site on Github?

Forget the Github project releases feature, that won’t work as a true update site (see notes at the end). To achieve what you want, you can create a Github repo, commit/push your p2 repository there and then serve it as an update site, using raw links. So for example, for the repository: https://github.com/some-user/some-repository/ you can … Read more

How to determine whether a DLL is a managed assembly or native (prevent loading a native dll)?

Answer quoted by lubos hasko is good but it doesn’t work for 64-bit assemblies. Here’s a corrected version (inspired by http://apichange.codeplex.com/SourceControl/changeset/view/76c98b8c7311#ApiChange.Api/src/Introspection/CorFlagsReader.cs) public static bool IsManagedAssembly(string fileName) { using (Stream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read)) using (BinaryReader binaryReader = new BinaryReader(fileStream)) { if (fileStream.Length < 64) { return false; } //PE Header starts @ 0x3C … Read more

JIRA Plugins: What do you use? [closed]

Here are the plugins I couldn’t live without: Timesheet report – Summarizes any user’s time spent over a weekly period: http://confluence.atlassian.com/display/JIRAEXT/Timesheet+report+and+portlet Charting plugin – Generate charts from any issue navigator: http://confluence.atlassian.com/display/JIRAEXT/JIRA+Charting+Plugin Subversion plugin – Link and view subversion commit history to a JIRA issue: http://confluence.atlassian.com/display/JIRAEXT/JIRA+Subversion+plugin Labels plugin – Lets you tag any JIRA issue and … Read more

Declaring custom ‘clean’ task when using the standard Gradle lifecycle plugins is not allowed

You should not try to override the default clean task, but instead configure it to delete additional stuff like clean { delete rootProject.buildDir } But check first whether this is not the default behavior of the clean task anyway. Alternatively if you want to be able to do a specific clean action individually, you can … Read more