shitty tweaks.

This commit is contained in:
Bryce Covert
2019-12-15 15:16:46 -08:00
parent ec1f9e1b2f
commit 297214896f
6 changed files with 14 additions and 10 deletions

View File

@@ -28,8 +28,8 @@
[play-clj "0.4.6-BRYCE" :exclusions [org.clojure/clojure]] [play-clj "0.4.6-BRYCE" :exclusions [org.clojure/clojure]]
[org.clojure/data.priority-map "0.0.5"] [org.clojure/data.priority-map "0.0.5"]
[org.clojure/core.async "0.2.371" :exclusions [org.clojure/clojure]]] #_[org.clojure/core.asyc "0.6.532" :exclusions [org.clojure/clojure]]]
:plugins [[lein-droid "0.4.6" :exclusions [org.clojure/clojure] ]] :plugins [[lein-droid "0.4.7-snapshot" :exclusions [org.clojure/clojure] ]]
:repositories [["jCenter" "https://jcenter.bintray.com/"] :repositories [["jCenter" "https://jcenter.bintray.com/"]
["google" "https://maven.google.com"]] ["google" "https://maven.google.com"]]
@@ -58,7 +58,7 @@
:android {;; Specify the path to the Android SDK directory either :android {;; Specify the path to the Android SDK directory either
;; here or in your ~/.lein/profiles.clj file. ;; here or in your ~/.lein/profiles.clj file.
:sdk-path "/Users/brycecovert/dev/advent/android/sdk" :sdk-path "/Users/bryce/dev/advent/android/sdk"
;; Uncomment this if dexer fails with OutOfMemoryException ;; Uncomment this if dexer fails with OutOfMemoryException
#_#_:force-dex-optimize true #_#_:force-dex-optimize true

View File

@@ -1,8 +1,8 @@
{ {
"platform": "mac", "platform": "mac",
"jdk": "/Users/brycecovert/dev/jvms/jre1.8.0_112.jre/Contents/jre.zip", "jdk": "/Users/bryce/Documents/jdk8u202-b08/Contents/Home/",
"executable": "Tick's Tales", "executable": "Tick's Tales",
"vmargs": ["-Dui_scale=1.0"], "vmargs": ["-Duse-repl=false", "-Dui_scale=1.0", "-Dno-steam=true", "-Dclojure.compiler.direct-linking=true", "-Dis-desktop=true", "-Dplatform=desktop"],
"classpath": ["target/advent-standalone.jar"], "classpath": ["target/advent-standalone.jar"],
"mainclass": "advent.core.desktop_launcher", "mainclass": "advent.core.desktop_launcher",
"resources": ["resources/icon", "steam_appid.txt"], "resources": ["resources/icon", "steam_appid.txt"],

View File

@@ -22,7 +22,7 @@
false))) false)))
(defn use-pref [] (defn use-pref []
(swap! has-purchased? #(or % (check-purchase-pref))) (swap! has-purchased? #(or % (check-purchase-pref) (= "desktop" (System/getProperty "platform"))))
(println "preferences purchased:" @has-purchased?)) (println "preferences purchased:" @has-purchased?))
(defn start-purchase [] (defn start-purchase []

View File

@@ -17,17 +17,21 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>2.0.11</string> <string>2.0.12</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>135</string> <string>136</string>
<key>CFBundleIconName</key> <key>CFBundleIconName</key>
<string>AppIcon</string> <string>AppIcon</string>
<key>MinimumOSVersion</key> <key>MinimumOSVersion</key>
<string>8.0</string> <string>8.0</string>
<key>LSRequiresIPhoneOS</key> <key>LSRequiresIPhoneOS</key>
<true/> <true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>arm64</string>
</array>
<key>UIDeviceFamily</key> <key>UIDeviceFamily</key>
<array> <array>
<integer>1</integer> <integer>1</integer>

View File

@@ -1 +1 @@
lein do javac, compile && ~/.robovm-sdks/robovm-2.3.3/bin/robovm -verbose -cp `lein cp` -config robovm.xml -provisioningprofile "Bryce TT app store 2" -cache tmp/my-cache -tmp tmp/tmp-dir -rvm:ms64M -signidentity "/iPhone Distribution/" -createipa lein do javac, compile && ~/Desktop/Advent\ from\ backup/robovm-sdks/.robovm-sdks/robovm-2.3.3/bin/robovm -verbose -cp `lein cp` -config robovm.xml -provisioningprofile "TicksTales test" -cache tmp/my-cache -tmp tmp/tmp-dir -rvm:ms64M -signidentity "/iPhone Distribution/" -createipa -ipaarchs arm64

View File

@@ -19,7 +19,7 @@
:jvm-opts ["-Dno-steam=true" "-Dclojure.compiler.direct-linking=true" "-Dclojure.compiler.elide-meta=[:doc :file :line :added]" :jvm-opts ["-Dno-steam=true" "-Dclojure.compiler.direct-linking=true" "-Dclojure.compiler.elide-meta=[:doc :file :line :added]"
"-Dplatform=ios"] "-Dplatform=ios"]
:ios {:robovm-opts ["-config" "robovm.xml"] :ios {:robovm-opts ["-config" "robovm.xml"]
:robovm-path "/Users/brycecovert/.robovm-sdks/robovm-2.3.0" :robovm-path "/Users/bryce/Desktop/Advent from backup/robovm-sdks/.robovm-sdks/robovm-2.3.0"
:version 2.1} :version 2.1}
:aot :all :aot :all
:main advent.core.IOSLauncher) :main advent.core.IOSLauncher)