Skip to content

kikuchy/android-postfix-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

android-postfix-plugin

Android postfix plugin for AndroidStudio

image image

Available templates:

Postfix Expression Description Example
.toast Create and show Toast. Toast.makeText(context, expr, Toast.LENGTH_SHORT).show()
.log Logging. If there is constant variable "TAG", it use "TAG" . Else it use class name. Log.d(TAG, expr)
.logd Logging. If BuildConfig.DEBUG is true, Log message. if (BuildConfig.DEBUG) Log.d(TAG, expr)
.isemp Check empty. TextUtils.isEmpty(expr)

Plugin page

JetBrains plugin page

Contribution

  1. Fork it ( http://github.com/takahirom/android-postfix-plugin/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Thanks

guava-postfix-plugin

License

This project is released under the Apache License, Version 2.0.

About

Android postfix plugin for AndroidStudio

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 99.4%
  • HTML 0.6%