All Projects → yuebinyun → Debug Badge

yuebinyun / Debug Badge

Add badge(version code, version name, etc) for your DEBUG APK.

Programming Languages

groovy
2714 projects

Projects that are alternatives of or similar to Debug Badge

AndroidDemo
Android 例程
Stars: ✭ 19 (-74.67%)
Mutual labels:  android-development, android-studio
Android Tips Tricks
☑️ [Cheatsheet] Tips and tricks for Android Development
Stars: ✭ 4,496 (+5894.67%)
Mutual labels:  android-studio, android-development
The Pit Of The Android Studio
👍 👍 👏 🌟 ⭐️ ⭐️ Everything about the Android Studio and Intellij IDEAfor example:Install,common problems and solutions,each libraries for android and androidx library,code and peoject templates,etc.全面总结Android Studio以及Intellij IDEA的填坑指南,详解AS版本号、Gradle版本、BuildTools三者的对照关系,AS模板配置,gradle插件,Android自带注解库详解,support详解等干货。
Stars: ✭ 296 (+294.67%)
Mutual labels:  android-studio, android-development
AOSP-Kayboard-7.1.2
Full functional AOSP Keyboard with glide typing
Stars: ✭ 33 (-56%)
Mutual labels:  android-development, android-studio
Dagger2 Sample
A sample app to demo how to implement dagger in Android using Dagger Android Support library
Stars: ✭ 72 (-4%)
Mutual labels:  android-studio, android-development
android-jetpack
🚀 Road to Accelerate Android Development using Jetpack
Stars: ✭ 50 (-33.33%)
Mutual labels:  android-development, android-studio
Awesome Android Ui
😎 A curated list of awesome Android UI/UX libraries
Stars: ✭ 353 (+370.67%)
Mutual labels:  android-studio, android-development
androidCourseKotlin
Android Course in Kotlin
Stars: ✭ 19 (-74.67%)
Mutual labels:  android-development, android-studio
Android Data Binding Examples
A collection of samples using Android Data Binding
Stars: ✭ 20 (-73.33%)
Mutual labels:  android-studio, android-development
Androidtips
A collections of tips in Android developing.Android开发总结。我的博客:
Stars: ✭ 713 (+850.67%)
Mutual labels:  android-studio, android-development
AndroidDevTools
收集整理Android开发所需的Android SDK、开发中用到的工具、Android开发教程、Android设计规范,免费的设计素材等。
Stars: ✭ 7,284 (+9612%)
Mutual labels:  android-development, android-studio
Androidkex
Extensions for Kotlin. Use the power of Kotlin to make your code smaller and beautiful.
Stars: ✭ 35 (-53.33%)
Mutual labels:  android-studio, android-development
Reside-Menu
By applying viewpager animation you can also make AMAZING Reside Menu's
Stars: ✭ 72 (-4%)
Mutual labels:  android-development, android-studio
FancyTab
No description or website provided.
Stars: ✭ 15 (-80%)
Mutual labels:  android-development, android-studio
FireFiles
Powerful Android File Manager for everything that runs on Android OS (Android TV, Android Watch, Mobile, etc)
Stars: ✭ 37 (-50.67%)
Mutual labels:  android-development, android-studio
Gradle Play Publisher
GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.
Stars: ✭ 3,690 (+4820%)
Mutual labels:  gradle-plugin, android-development
youtube-android
Source code as seen on my YouTube videos!
Stars: ✭ 35 (-53.33%)
Mutual labels:  android-development, android-studio
feature-flag-android
A Gradle plugin to achieve feature flag based development for Android applications.
Stars: ✭ 82 (+9.33%)
Mutual labels:  android-development, gradle-plugin
Zoomrecylerlayout
🎢 Zoom Recycler Layout Manager For Android Kotlin
Stars: ✭ 618 (+724%)
Mutual labels:  android-studio, android-development
Awesome Android
😎 A curated list of awesome Android resources
Stars: ✭ 26 (-65.33%)
Mutual labels:  android-studio, android-development

Add badge(version code, version name, etc) for your DEBUG APK.

screenshot

Add it to your project!

Clean your project

clean

or

./gradlew clean
## or
## gradle clean

Add gradle plugin

buildscript {
  repositories {
    mavenCentral()
  }

  dependencies {
    classpath 'com.github.yuebinyun.debug-badge:debug-badge:0.1.3'
  }
}

apply plugin: 'com.android.application'
apply plugin: 'com.yuebinyun.badge'

android {
  //...
  //
}

dependencies {
  //...
}

// if you don't set flavor
badge {
  // label = "Debug"
  // label = "Dev" // optional.  Defualt text is `Debug`
  label = "${project.android.defaultConfig.versionName}"
  labelColor = 0xFFFFFF // optional.  Default color is WHITE
  labelBgColor = 0x0099FF // optional.  Defualt color is RED
}
// if you want to add badge for flavor-debug-version app
badgeFlavor {

  demo {
    label = "demo"
    // label = "Dev" // optional.  Defualt text is `Debug`
    // label = "${project.android.defaultConfig.versionName}"
    // labelColor = 0x000000 // optional.  Default color is WHITE
    // labelBgColor = 0x0099FF // optional.  Defualt color is RED
  }

  full {
    label = "full"
    // label = "Dev" // optional.  Defualt text is `Debug`
    // label = "${project.android.defaultConfig.versionName}"
    // labelColor = 0x000000 // optional.  Default color is WHITE
    // labelBgColor = 0x0099FF // optional.  Defualt color is RED
  }

  // NOT SET
  //  flavor1 {
  //    label = "flavor1"
  //  }

  flavor2 {
    label = "flavor2"
    labelColor = 0xFF00FF // optional.  Default color is WHITE
    labelBgColor = 0x0099FF // optional.  Defualt color is RED
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].