Hitesh Upadhyay
Hitesh Upadhyay

Reputation: 91

Can we use Proguard in Ionic?

I am new in Ionic and don't know much about core plugins and facilities it provides. I have heard about Proguard that it can help to build secure android applications. So my question is, Is it possible to make Ionic app more secure by using Proguard?

Upvotes: 5

Views: 5759

Answers (1)

Avinash Rathod
Avinash Rathod

Reputation: 610

Proguard is used to shrinks, optimizes and obfuscates Java code.

You can use proguard in ionic only for android platform as ios don't use Java as native code.

You can use following plugin to use proguard in ionic android -

https://github.com/greybax/cordova-plugin-proguard

https://www.npmjs.com/package/cordova-plugin-proguard

Upvotes: 5

Related Questions