Last active
September 17, 2021 09:43
-
-
Save twocity/a9546d8b63224c35924502c4ce7d0b02 to your computer and use it in GitHub Desktop.
miao~
This file contains 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
android.applicationVariants.all { variant -> | |
if (variant.install != null) { | |
variant.install.doLast { | |
exec { | |
commandLine "afplay", "your_sound.mp3" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
666