This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <scheme name="_@user_Islands Dark" version="142" parent_scheme="Darcula"> | |
| <metaInfo> | |
| <property name="ide">AndroidStudio</property> | |
| <property name="ideVersion">2025.2.2.4</property> | |
| <property name="originalScheme">Islands Dark</property> | |
| <property name="partialSave">true</property> | |
| <property name="pluginId">com.intellij</property> | |
| </metaInfo> | |
| <attributes> | |
| <option name="HTML_CODE"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [alias] | |
| g = !git | |
| st = status | |
| l = log | |
| lo = log --oneline | |
| d = diff | |
| dif = diff | |
| co = checkout | |
| ours = checkout --ours |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| androidComponents { | |
| val adbPath = sdkComponents.adb.get().asFile.absolutePath | |
| onVariants { variant -> | |
| val capitalizedVariantName = variant.name.replaceFirstChar(Char::titlecase) | |
| val applicationId = variant.applicationId.get() | |
| tasks.register("run${capitalizedVariantName}") { | |
| group = "run" | |
| description = "Installs and Launches the $capitalizedVariantName build" |