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
# apk settings (building) | |
apk:=app-release-unsigned.apk | |
aligned-apk:=app-release-unsigned-aligned.apk | |
signed-apk:=app-release-signed.apk | |
signed-aligned-apk:=app-release-signed-aligned.apk | |
# cordova | |
cordova-build-path:=src-cordova/platforms/android/app/build/outputs/apk/release | |
# keystore settings (signing) |
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
/** | |
* Creator: Dmitryck MPreobrazhenskiy https://disqus.com/by/dmitryck/ | |
* Description: bizzre iterate function that uses only math to iterate range with a step | |
* Wanted to preserve it for education purposes, | |
* formatted and replaced `~~` with `Math.floor` for simplicity and descriptivness | |
*/ | |
function iterate(a, b, c, fn = console.log){ | |
code = [ | |
function(a, b, c, k){ |