Skip to content

Instantly share code, notes, and snippets.

@obvyah
obvyah / build.gradle
Created March 27, 2019 06:03
Android + Bitbucket Pipeline + Fabric Beta - app-level build.gradle
buildTypes {
//....
debug {
minifyEnabled false
debuggable true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
ext.betaDistributionGroupAliases = "test-android-auto-build"
ext.betaDistributionNotifications = true
}
}
@obvyah
obvyah / bitbucket-pipelines.yml
Last active March 24, 2020 17:42
Android + Bitbucket Pipeline + Fabric Beta - bitbucket-pipelines.yml
image: java:8
pipelines:
branches:
test:
- step:
caches:
- gradle
- android-sdk
@obvyah
obvyah / spotifyAdAutoMute.scpt
Last active March 27, 2019 06:01
if you haven't decided to pay for spotify Premium, you can execute this applescript on your mac to Mute Spotify Advertisements and unmute Spotify when playing your fav musics automatically.
global check_every, adDuration
set check_every to 20
set adDuration to 31000
display dialog "Start to Check AD of Spotify every " & check_every & " seconds."
on reopen
display dialog "Start to Check AD of Spotify every " & check_every & " seconds."
end reopen