Add easylauncher for custom debug app icon

pull/5/head
avalin 10 months ago
parent c362543581
commit e2d119242c

@ -7,6 +7,7 @@ plugins {
id("kotlin-android")
id("kotlin-kapt")
id("dagger.hilt.android.plugin")
id("com.starter.easylauncher")
}
// Keystore
@ -76,6 +77,14 @@ android {
}
}
easylauncher {
buildTypes {
register(BuildType.DEBUG.name).configure {
filters(chromeLike())
}
}
}
dependencies {
implementation(project(":data"))

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translatable="false">Allin_DEBUG</string>
<string name="app_name" translatable="false">Allin DEBUG</string>
</resources>

@ -20,6 +20,9 @@ buildscript {
// Hilt
classpath(libs.plugin.hilt)
// Easy Launcher
classpath(libs.plugin.easylauncher)
}
}

@ -34,6 +34,7 @@ okHttp = "4.11.0"
gradlePlugin = "8.1.4"
publishPlugin = "1.1"
resgenPlugin = "2.5"
easylauncherPlugin = "6.1.0"
[libraries]
@ -97,6 +98,7 @@ plugin-gradle = { module = "com.android.tools.build:gradle", version.ref = "grad
plugin-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
plugin-kotlinSerialization = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "kotlin" }
plugin-hilt = { module = "com.google.dagger:hilt-android-gradle-plugin", version.ref = "hilt" }
plugin-easylauncher = { module = "com.project.starter:easylauncher", version.ref = "easylauncherPlugin" }
[bundles]

Loading…
Cancel
Save