Add easylauncher for custom debug app icon

pull/5/head
avalin 1 year ago
parent c362543581
commit e2d119242c

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

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

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

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

Loading…
Cancel
Save