Skip to content

Instantly share code, notes, and snippets.

View Null-Ouwenjie's full-sized avatar
🎯
Focusing

欧文杰 Null-Ouwenjie

🎯
Focusing
  • 广州
View GitHub Profile
@twocity
twocity / miao.gradle
Last active September 17, 2021 09:43
miao~
android.applicationVariants.all { variant ->
if (variant.install != null) {
variant.install.doLast {
exec {
commandLine "afplay", "your_sound.mp3"
}
}
}
}