This commit is contained in:
Bryce Covert
2017-09-25 11:28:29 -07:00
parent 95afad3756
commit 9a7c1078a2
14 changed files with 116 additions and 68 deletions

View File

@@ -228,6 +228,17 @@
regular-version
mobile-version))
(defmacro platformify [ios-version android-version regular-version]
(println "Platforming: " (System/getProperty "platform"))
(cond (= "desktop" (System/getProperty "platform"))
regular-version
(= "android" (System/getProperty "platform"))
android-version
:else
ios-version))
(def screenshot-chan (chan))
(defn publish-screenshot-fn []