aboutsummaryrefslogtreecommitdiff
path: root/platform/android/libs/google_play_services/src
diff options
context:
space:
mode:
authorJuan Linietsky2014-04-14 22:16:13 -0300
committerJuan Linietsky2014-04-14 22:16:13 -0300
commit162d2ebe4f1a6da2da62ad45c4cbfb161157d31d (patch)
tree571a54b06152ae79cadd5a266f3fdeee8f58c3cd /platform/android/libs/google_play_services/src
parent606b9d960af6ca4517503328b870214b96ff21d3 (diff)
downloadgodot-162d2ebe4f1a6da2da62ad45c4cbfb161157d31d.tar.gz
godot-162d2ebe4f1a6da2da62ad45c4cbfb161157d31d.tar.zst
godot-162d2ebe4f1a6da2da62ad45c4cbfb161157d31d.zip
-Added google play services (needed for some stuff)
-Added new screen resizing options, stretch_2d is removed, new much more flexible ones. -Fixed bug in viewport (can create more instances in 3d-in-2d demo now) -Can set android permissions and screen sizes manually in the export settings -Changed export templates extension to .tpz (too many people unzipped the manually..) -File dialog now ensures that the proper extension is used (will not allow to save without it) -Fixed bug that made collision exceptions not work in 2D
Diffstat (limited to 'platform/android/libs/google_play_services/src')
-rw-r--r--platform/android/libs/google_play_services/src/android/UnusedStub.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/platform/android/libs/google_play_services/src/android/UnusedStub.java b/platform/android/libs/google_play_services/src/android/UnusedStub.java
new file mode 100644
index 000000000..d546b0ba9
--- /dev/null
+++ b/platform/android/libs/google_play_services/src/android/UnusedStub.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package android;
+
+// Stub java file to make inclusion into some IDE's work.
+public final class UnusedStub {
+ private UnusedStub() { }
+}