diff --git a/template/resources/armeabi-libgdx.so b/template/resources/armeabi-libgdx.so index 9476a88..b9fb2e5 100644 Binary files a/template/resources/armeabi-libgdx.so and b/template/resources/armeabi-libgdx.so differ diff --git a/template/resources/armeabi-v7a-libgdx.so b/template/resources/armeabi-v7a-libgdx.so index bd49369..2af6b04 100644 Binary files a/template/resources/armeabi-v7a-libgdx.so and b/template/resources/armeabi-v7a-libgdx.so differ diff --git a/template/resources/libObjectAL.a b/template/resources/libObjectAL.a index c6d7e08..8e76b69 100644 Binary files a/template/resources/libObjectAL.a and b/template/resources/libObjectAL.a differ diff --git a/template/resources/libgdx.a b/template/resources/libgdx.a index 2838f52..94caa20 100644 Binary files a/template/resources/libgdx.a and b/template/resources/libgdx.a differ diff --git a/template/resources/x86-libgdx.so b/template/resources/x86-libgdx.so index 1abc12a..ad2189e 100644 Binary files a/template/resources/x86-libgdx.so and b/template/resources/x86-libgdx.so differ diff --git a/template/src/leiningen/new/play_clj/AndroidLauncher.java b/template/src/leiningen/new/play_clj/AndroidLauncher.java index 9ca501e..f43bd18 100644 --- a/template/src/leiningen/new/play_clj/AndroidLauncher.java +++ b/template/src/leiningen/new/play_clj/AndroidLauncher.java @@ -12,7 +12,7 @@ public class {{android-class-name}} extends AndroidApplication { RT.var("clojure.core", "require").invoke(Symbol.intern("{{namespace}}")); try { Game game = (Game) RT.var("{{namespace}}", "{{app-name}}").deref(); - initialize(game, true); + initialize(game); } catch (Exception e) { e.printStackTrace(); } diff --git a/template/src/leiningen/new/play_clj/android-project.clj b/template/src/leiningen/new/play_clj/android-project.clj index 899e765..9448f79 100644 --- a/template/src/leiningen/new/play_clj/android-project.clj +++ b/template/src/leiningen/new/play_clj/android-project.clj @@ -1,11 +1,11 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "0.9.9" :use-resources true] - [com.badlogicgames.gdx/gdx-backend-android "0.9.9"] + :dependencies [[com.badlogicgames.gdx/gdx "1.0" :use-resources true] + [com.badlogicgames.gdx/gdx-backend-android "1.0"] [neko/neko "3.0.1"] [org.clojure-android/clojure "1.5.1-jb" :use-resources true] - [play-clj "0.2.4"]] + [play-clj "0.3.0"]] :profiles {:dev {:dependencies [[android/tools.nrepl "0.2.0-bigstack"] [compliment "0.0.3"]] :android {:aot :all-with-unused}} diff --git a/template/src/leiningen/new/play_clj/desktop-launcher.clj b/template/src/leiningen/new/play_clj/desktop-launcher.clj index 37c0570..dffdaca 100644 --- a/template/src/leiningen/new/play_clj/desktop-launcher.clj +++ b/template/src/leiningen/new/play_clj/desktop-launcher.clj @@ -6,5 +6,5 @@ (defn -main [] - (LwjglApplication. {{app-name}} "{{app-name}}" 800 600 true) + (LwjglApplication. {{app-name}} "{{app-name}}" 800 600) (Keyboard/enableRepeatEvents true)) diff --git a/template/src/leiningen/new/play_clj/desktop-project.clj b/template/src/leiningen/new/play_clj/desktop-project.clj index 0ce77b7..c63d7ed 100644 --- a/template/src/leiningen/new/play_clj/desktop-project.clj +++ b/template/src/leiningen/new/play_clj/desktop-project.clj @@ -1,12 +1,12 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] - [com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"] - [com.badlogicgames.gdx/gdx-platform "0.9.9" + :dependencies [[com.badlogicgames.gdx/gdx "1.0"] + [com.badlogicgames.gdx/gdx-backend-lwjgl "1.0"] + [com.badlogicgames.gdx/gdx-platform "1.0" :classifier "natives-desktop"] - [org.clojure/clojure "1.5.1"] - [play-clj "0.2.4"]] + [org.clojure/clojure "1.6.0"] + [play-clj "0.3.0"]] :source-paths ["src" "src-common"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] diff --git a/template/src/leiningen/new/play_clj/ios-project.clj b/template/src/leiningen/new/play_clj/ios-project.clj index a1184c7..e229de0 100644 --- a/template/src/leiningen/new/play_clj/ios-project.clj +++ b/template/src/leiningen/new/play_clj/ios-project.clj @@ -1,9 +1,9 @@ (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" - :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] - [com.badlogicgames.gdx/gdx-backend-robovm "0.9.9"] - [org.clojure/clojure "1.5.1"] - [play-clj "0.2.4"]] + :dependencies [[com.badlogicgames.gdx/gdx "1.0"] + [com.badlogicgames.gdx/gdx-backend-robovm "1.0"] + [org.clojure/clojure "1.6.0"] + [play-clj "0.3.0"]] :source-paths ["src/clojure" "../desktop/src-common"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]