├── assets └── android_studio_plugin.png ├── .gitignore ├── Logger └── BLog.java ├── README.md └── LICENSE /assets/android_studio_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balsikandar/Android-Studio-Plugins/HEAD/assets/android_studio_plugin.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | /.idea 11 | -------------------------------------------------------------------------------- /Logger/BLog.java: -------------------------------------------------------------------------------- 1 | package com.balsikandar.logger; 2 | 3 | import android.util.Log; 4 | 5 | public final class BLog { 6 | 7 | private static boolean IS_LOGGING_ENABLED = false; 8 | private static String TAG = BobbleConstants.TAG; 9 | 10 | private BLog() { 11 | // This class is not publicly instantiable 12 | } 13 | 14 | public static void enableLogging() { 15 | IS_LOGGING_ENABLED = true; 16 | } 17 | 18 | public static void disableLogging() { 19 | IS_LOGGING_ENABLED = false; 20 | } 21 | 22 | public static void setTag(String tag) { 23 | if (tag == null) { 24 | return; 25 | } 26 | TAG = tag; 27 | } 28 | 29 | public static void d(String tag, String message) { 30 | if (IS_LOGGING_ENABLED) { 31 | Log.d(tag, message); 32 | } 33 | } 34 | 35 | public static void d(String message) { 36 | if (IS_LOGGING_ENABLED) { 37 | Log.d(TAG, message); 38 | } 39 | } 40 | 41 | public static void e(String message) { 42 | if (IS_LOGGING_ENABLED) { 43 | Log.e(TAG, message); 44 | } 45 | } 46 | 47 | public static void e(String tag, String message) { 48 | if (IS_LOGGING_ENABLED) { 49 | Log.e(tag, message); 50 | } 51 | } 52 | 53 | public static void i(String message) { 54 | if (IS_LOGGING_ENABLED) { 55 | Log.i(TAG, message); 56 | } 57 | } 58 | 59 | public static void i(String tag, String message) { 60 | if (IS_LOGGING_ENABLED) { 61 | Log.i(tag, message); 62 | } 63 | } 64 | 65 | public static void w(String message) { 66 | if (IS_LOGGING_ENABLED) { 67 | Log.w(TAG, message); 68 | } 69 | } 70 | 71 | public static void w(String tag, String message) { 72 | if (IS_LOGGING_ENABLED) { 73 | Log.w(tag, message); 74 | } 75 | } 76 | 77 | public static void wtf(String message) { 78 | if (IS_LOGGING_ENABLED) { 79 | Log.wtf(TAG, message); 80 | } 81 | } 82 | 83 | public static void wtf(String tag, String message) { 84 | if (IS_LOGGING_ENABLED) { 85 | Log.wtf(tag, message); 86 | } 87 | } 88 | 89 | } 90 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Android Studio Plugins 4 | 5 | [![Android Weekly](https://img.shields.io/badge/Android%20Weekly-%23271-blue.svg)](http://androidweekly.net/issues/issue-271) 6 | [![Android Weekly](https://img.shields.io/badge/Android%20Weekly-%23272-blue.svg)](http://androidweekly.net/issues/issue-272) 7 | [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://opensource.org/licenses/Apache-2.0) 8 | [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/balsikandar/Android-Studio-Plugins/blob/master/LICENSE) 9 | 10 | #### Spread Some :heart: 11 | 12 | [![GitHub stars](https://img.shields.io/github/stars/balsikandar/Android-Studio-Plugins.svg?style=social&label=Star)](https://github.com/balsikandar/Android-Studio-Plugins) [![GitHub forks](https://img.shields.io/github/forks/balsikandar/Android-Studio-Plugins.svg?style=social&label=Fork)](https://github.com/balsikandar/Android-Studio-Plugins/fork) [![GitHub watchers](https://img.shields.io/github/watchers/balsikandar/Android-Studio-Plugins.svg?style=social&label=Watch)](https://github.com/balsikandar/Android-Studio-Plugins)[![GitHub followers](https://img.shields.io/github/followers/balsikandar.svg?style=social&label=Follow)](https://github.com/balsikandar) 13 | [![Twitter Follow](https://img.shields.io/twitter/follow/balsikandar.svg?style=social)](https://twitter.com/balsikandar) 14 | 15 | 16 | This is a list of all awesome and useful android studio plugins. This repo will be updated regularly for new entries. 17 | 18 | Here is an [article](https://blog.mindorks.com/how-to-become-more-productive-in-android-with-android-studio-plugins-3beb3861fa7) related to this repo. 19 | 20 | # What's New? 21 | ## [Robin](https://github.com/balsikandar/Robin) 22 | 23 | Robin is a logging library for Bundle data passed between Activities and fragments. It also provides a callback to send screen views of user visited pages to your analytics client 24 | 25 | 26 | ### Latest Plugins 27 | 28 | | Plugin Name | Plugin link 29 | | ------------------------------------------ | ----------------------------------------------------------- 30 | | **Flutter installation** | https://github.com/flutter/flutter-intellij 31 | | **SonarLint inspection tool** | https://plugins.jetbrains.com/plugin/7973-sonarlint 32 | | **Kotlin installation** | http://kotlinlang.org/ 33 | 34 | ### Plugins for kotlin 35 | 36 | | Plugin Name | Plugin link 37 | | ------------------------------------------ | ----------------------------------------------------------- 38 | | **Json to kotlin class** | https://github.com/wuseal 39 | | **Kotlin Parcelable code generator** | https://github.com/nekocode/android-parcelable-intellij-plugin-kotlin 40 | | **Java Stream API debugger** | https://plugins.jetbrains.com/plugin/9696-java-stream-debugger 41 | | **Build Webhook Notifier** | https://plugins.jetbrains.com/plugin/16984-build-webhook-notifier 42 | | **Kotlin Bulk Add Named Params** | https://plugins.jetbrains.com/plugin/18248-kotlin-bulk-add-name-params 43 | 44 | 45 | 46 | ### Code generators 47 | 48 | | Plugin Name | Plugin link 49 | | ------------------------------------------ | ----------------------------------------------------------- 50 | | MVP code generator | https://plugins.jetbrains.com/plugin/9784-generate-m-v-p-code 51 | | Parcelable code generators | https://github.com/mcharmas/android-parcelable-intellij-plugin 52 | | Butterknife code injector | https://github.com/avast/android-butterknife-zelezny 53 | | JsonToKotlinClass | https://github.com/wuseal/JsonToKotlinClass 54 | | Json to Pojo generator | https://github.com/nvinayshetty/DTOnator 55 | | StepBuilder Generator | https://plugins.jetbrains.com/plugin/8276-stepbuilder-generator 56 | | Remove butterknife | https://github.com/u3shadow/RemoveButterKnife 57 | | Android DPI calculator | https://plugins.jetbrains.com/plugin/7832-android-dpi-calculator 58 | | Databinding Support | https://plugins.jetbrains.com/plugin/9271-databinding-support 59 | | Android Selector chapek | https://github.com/inmite/android-selector-chapek 60 | | Android Holo Colors IntelliJ Plugin | https://github.com/jeromevdl/android-holo-colors-idea-plugin 61 | | ExyNap | http://exynap.com/ 62 | | EventBus | https://github.com/kgmyshin/eventbus-intellij-plugin 63 | | FindViewByMe | https://github.com/laobie/FindViewByMe 64 | | AndroidLocalizationer | https://github.com/westlinkin/AndroidLocalizationer 65 | | .gitignore | https://github.com/hsz/idea-gitignore 66 | | BIU (plugin to compress your PNGs) | https://plugins.jetbrains.com/plugin/9788-biu 67 | | Kotlin Bulk Add Named Params | https://plugins.jetbrains.com/plugin/18248-kotlin-bulk-add-name-params 68 | 69 | ### UI Design 70 | 71 | | Plugin Name | Plugin link 72 | | ------------------------------------------ | ----------------------------------------------------------- 73 | | Sexy Editor | https://plugins.jetbrains.com/plugin/1833-sexy-editor 74 | | SmoothScroll | https://plugins.jetbrains.com/plugin/7355-smoothscroll 75 | | Android Material Design Icon Generator | https://plugins.jetbrains.com/plugin/7647-android-material-design-icon-generator 76 | | Key Promoter X | https://github.com/halirutan/IntelliJ-Key-Promoter/tree/KeyPromoterX 77 | | Here-be-Dragons | https://github.com/anupcowkur/here-be-dragons 78 | | Prettify | https://github.com/Haehnchen/idea-android-studio-plugin 79 | | JSONOnlineViewer | https://plugins.jetbrains.com/plugin/7838-jsononlineviewer 80 | | Android Methods Count | https://plugins.jetbrains.com/plugin/8076-android-methods-count 81 | | Codota | https://plugins.jetbrains.com/plugin/7638-codota 82 | | IdeaVim | https://plugins.jetbrains.com/plugin/164-ideavim 83 | | Material Theme UI for Jetbrains | https://github.com/ChrisRM/material-theme-jetbrains 84 | | CodeGlance | https://github.com/Vektah/CodeGlance 85 | | Material Theme UI EAP | https://plugins.jetbrains.com/plugin/9377-material-theme-ui-eap 86 | | SVG2VectorDrawable | https://github.com/misakuo/svgtoandroid 87 | | Android Drawable Importer | https://github.com/winterDroid/android-drawable-importer-intellij-plugin 88 | | Vector Drawable Thumbnails | https://plugins.jetbrains.com/plugin/10741-vector-drawable-thumbnails 89 | | ChroMATERIAL | https://github.com/ciscorucinski/ChroMATERIAL 90 | 91 | 92 | ### Debugging 93 | 94 | | Plugin Name | Plugin link 95 | | ------------------------------------------ | ----------------------------------------------------------- 96 | | JVM Debugger Memory View | https://plugins.jetbrains.com/plugin/8537-jvm-debugger-memory-view 97 | | Android-Resource-Usage-Count | https://github.com/niorgai/Android-Resource-Usage-Count 98 | | FindBugs | https://plugins.jetbrains.com/plugin/3847-findbugs-idea 99 | | Jetbrains-Wakatime | https://github.com/wakatime/jetbrains-wakatime 100 | | Android Wifi Plugin | https://github.com/pedrovgs/AndroidWiFiADB 101 | | QA Plug | https://plugins.jetbrains.com/plugin/4594-qaplug 102 | | RobotQA Remote Debugging on Cloud Devices | https://github.com/robotqa/Android-Studio-Plugin-for-Debugging 103 | 104 | ### Utilities 105 | 106 | | Plugin Name | Plugin link 107 | | ------------------------------------------ | ----------------------------------------------------------- 108 | | JRebel for android | https://plugins.jetbrains.com/plugin/7936-jrebel-for-android 109 | | Advanced java folding | https://plugins.jetbrains.com/plugin/9320-advanced-java-folding 110 | | CPU Usage Indicator | https://plugins.jetbrains.com/plugin/8580-cpu-usage-indicator 111 | | Android folding plugin | https://github.com/dmytrodanylyk/folding-plugin 112 | | ADB idea | https://github.com/pbreault/adb-idea 113 | | Permission Dispatcher | https://github.com/shiraji/permissions-dispatcher-plugin 114 | | Scala | https://plugins.jetbrains.com/plugin/1347-scala 115 | | ADB Wifi | https://github.com/layerlre/ADBWIFI 116 | | String Manipulation | https://github.com/krasa/StringManipulation 117 | | Android localization | https://github.com/Airsaid/AndroidLocalizePlugin 118 | | Inspire to write code | https://github.com/Airsaid/InspireWritingPlugin 119 | | Build Webhook Notifier | https://plugins.jetbrains.com/plugin/16984-build-webhook-notifier 120 | 121 | ### Tools 122 | 123 | | Plugin Name | Plugin link 124 | | ------------------------------------------ | ----------------------------------------------------------- 125 | | GenyMotion | https://www.genymotion.com/plugins/ 126 | | Git Flow Integration for Intellij | https://github.com/OpherV/gitflow4idea/ 127 | | SonarLint | https://plugins.jetbrains.com/plugin/7973-sonarlint 128 | | Spotless | https://github.com/diffplug/spotless 129 | 130 | ### Contributing to this Repo 131 | If you feel something is missing. Create a pull request and Dive In. 132 | 133 | ### Check out another awesome library to capture your crashes instantly and locally. 134 | [CrashReporter](https://github.com/MindorksOpenSource/CrashReporter) on your duty. 135 | 136 | ### [Chinese version : 中文版访问这里](https://github.com/sunzq19931016/Android-Studio-Plugins-cn) 137 | 138 | ### Find this project useful ? :heart: 139 | * Support it by clicking the :star: button on the upper right of this page. :v: 140 | 141 | ### License 142 | 143 | ``` 144 | Copyright (C) 2016 Bal Sikandar 145 | Copyright (C) 2011 Android Open Source Project 146 | 147 | Licensed under the Apache License, Version 2.0 (the "License"); 148 | you may not use this file except in compliance with the License. 149 | You may obtain a copy of the License at 150 | 151 | http://www.apache.org/licenses/LICENSE-2.0 152 | 153 | Unless required by applicable law or agreed to in writing, software 154 | distributed under the License is distributed on an "AS IS" BASIS, 155 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 156 | See the License for the specific language governing permissions and 157 | limitations under the License. 158 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | --------------------------------------------------------------------------------