Apply ribbon to debug and nightly variant's launcher icon

Create a noticeable difference between nightly, debug and stable

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
This commit is contained in:
Aayush Gupta
2023-05-08 16:09:17 +05:30
parent 6fb0c7dc9b
commit 5664494a1d
2 changed files with 15 additions and 2 deletions

View File

@@ -23,7 +23,8 @@ plugins {
id 'org.jetbrains.kotlin.android'
id 'org.jetbrains.kotlin.kapt'
id 'androidx.navigation.safeargs.kotlin'
id "org.jlleitschuh.gradle.ktlint"
id 'org.jlleitschuh.gradle.ktlint'
id 'com.starter.easylauncher'
}
project.ext {
@@ -108,6 +109,17 @@ kapt {
correctErrorTypes = true
}
easylauncher {
buildTypes {
nightly {
filters chromeLike()
}
debug {
filters chromeLike()
}
}
}
dependencies {
//MultiDex for Kitkat support
implementation "androidx.multidex:multidex:2.0.1"

View File

@@ -22,7 +22,8 @@ plugins {
id 'com.android.application' version '8.0.1' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.5.3' apply false
id "org.jlleitschuh.gradle.ktlint" version '11.3.1' apply false
id 'org.jlleitschuh.gradle.ktlint' version '11.3.1' apply false
id 'com.starter.easylauncher' version '6.1.0' apply false
}
task clean(type: Delete) {