Ribbonizer plugin for Android


Source link: https://github.com/gfx/gradle-android-ribbonizer-plugin

Ribbonizer plugin for Android

This is a ribbonizer as a Gradle plugin for Android, which adds a ribbon to launcher icons.

Usage

// in build.gradle buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'com.android.tools.build:gradle:2.1.2'

classpath 'com.github.gfx.ribbonizer:ribbonizer-plugin:2.1.0'
  
}
 
}
// in app/build.gradle apply plugin: 'com.github.gfx.ribbonizer'  android {

  // ...

buildTypes {

debug {
/*debuggable build, which will ribbonized automatically*/
}

beta {

 //debuggable build which will automatically ribbonized.

 debuggable true

}

canary {

 //non-debuggable build which will no automatically ribbonized.

 //But, we force one of its flavors. See `ribbonizer` for how-to

 debuggable false

}

release {
/*non-debuggable build. Will not be rebbonized automatically*/
}

  
}

productFlavors {

local {

}

qa {

}

staging {

}

production {

}

  
}
 
}
  ribbonizer {

  // "manifest application[android:icon]" is automatically added to the list
  iconNames "@drawable/ic_notification", "@drawable/widget_preview"

builder {
 variant, iconFile ->

// change ribbon colors by product flavors

if (variant.flavorName == "local") {

 return grayRibbonFilter(variant, iconFile)

}
 else if (variant.flavorName == "qa") {

 // customColorRibbonFilter allows setting any color code

 def filter = customColorRibbonFilter(variant, iconFile, "#00C89C")

 // Finer control of the label text can be achieved by setting it manually, or set to

 // null for an unlabelled ribbon. The default is to use the flavor name.

 filter.label = "QA" + variant.versionCode

 return filter

}
 else if (variant.flavorName == "staging") {

 return yellowRibbonFilter(variant, iconFile)

}
 else if (variant.buildType.name == "debug") {

 if (variant.flavorName == "production") {

  // Particular configurations can be skipped by returning no filters

  return null

 
}

 else {

  // Other filters can be applied, as long as they implement Consumer<BufferedImage>

  return grayScaleFilter(variant, iconFile)

 
}

}
 else {

 return greenRibbonFilter(variant, iconFile)

}

  
}

//Although `canary` build-type is marked as `non-debuggable`
  //we can still force specific variants to be ribbonized:
  forcedVariantsNames "localCanary" 
}
 

Project Structure

plugin/
- The main module of a Gradle plugin example/  - An example android application that uses this plugin buildSrc/ - A helper module to use this plugin in example modules 

You can test this project with ./gradlew check.

Release Engineering

./gradlew bumpMinor # or bumpMajor, bumpPatch  make publish # upload artifacts to bintray jcenter

Author And License

The MIT License (MIT)

Copyright (c) 2015 FUJI Goro (gfx) [email protected].

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Resources

Make things easy when you need to write a sql statment for Android SQLite.

A library allowing you to manage Wi-Fi peer-to-peer connectivity in a reactive way. The library itself is a RxJava wrapper for Android's WifiP2pManager, used for discovering available peers, setup connection to peers and query for the list of peers.

When a p2p connection is formed over wifi, devices continue to maintain the uplink connection over mobile or any other available network for internet connectivity.

SimpleNFC is a project which include insanely easy way of reading NFC data.

Doughnut Chart

Hardware accelerated view for visual content on Android, supporting everything from single pictures to 360 stereo VR video. Works with all sources that write to a Surface or SurfaceTexture, e.g. MediaPlayer, ExoPlayer, and Camera/Camera2 API.

With Diagonal Layout explore new styles and approaches on material design.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes