diff --git a/README.md b/README.md index 94039fe..86f1ba8 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,13 @@ ionic platform add android Plugins -ionic plugin add cordova-plugin-screen-orientation +ionic plugin add cordova-plugin-screen-orientation //Obsolete +ionic plugin add cordova-plugin-screen-orientation@1.4.3 --save cordova plugin add cordova-plugin-media cordova plugin add https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin.git -cordova plugin add cordova-plugin-crosswalk-webview +cordova plugin add cordova-plugin-crosswalk-webview //Obsolete +cordova plugin rm cordova-plugin-crosswalk-webview +cordova plugin add cordova-plugin-crosswalk-webview@2.2.0 @@ -34,3 +37,15 @@ Animations Tuts ============== https://jonsuh.com/blog/animate-svg-with-css/ + +Signieren der APK +=============== + + +"C:\Program Files\Android\Android Studio\jre\bin\keytool" -genkey -v -keystore findedastier.keystore -alias com.raataar.findedastier -keyalg RSA -keysize 2048 -validity 10000 +(Muss nur beim ersten mal gemacht werden.) + +"C:\Program Files\Android\Android Studio\jre\bin\jarsigner" -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore D:\Projekte\Android\kinderspiele1\findedastier.keystore D:\Projekte\Android\kinderspiele1\platforms\android\build\outputs\apk\android-armv7-release-unsigned.apk com.raataar.findedastier + +C:\Users\chilmer\AppData\Local\Android\Sdk\build-tools\25.0.2\zipalign -v 4 D:\Projekte\Android\kinderspiele1\platforms\android\build\outputs\apk\android-armv7-release-unsigned.apk D:\Projekte\Android\kinderspiele1\platforms\android\build\outputs\apk\signed_release.apk + diff --git a/config.xml b/config.xml index 39e8ef0..05fff50 100644 --- a/config.xml +++ b/config.xml @@ -1,50 +1,62 @@ - + - Kinderspiel - Finde das Tier - + Kinderspiel - Finde das Tier + Ein Raataar-Projekt - + Your Name Here - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cordova/PromisesPlugin-master/.gitignore b/cordova/PromisesPlugin-master/.gitignore new file mode 100644 index 0000000..6efc548 --- /dev/null +++ b/cordova/PromisesPlugin-master/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +.tmp/ diff --git a/cordova/PromisesPlugin-master/.npmignore b/cordova/PromisesPlugin-master/.npmignore new file mode 100644 index 0000000..91571e6 --- /dev/null +++ b/cordova/PromisesPlugin-master/.npmignore @@ -0,0 +1,2 @@ +index.js +build diff --git a/cordova/PromisesPlugin-master/LICENSE b/cordova/PromisesPlugin-master/LICENSE new file mode 100644 index 0000000..8a4d435 --- /dev/null +++ b/cordova/PromisesPlugin-master/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014-15 Vlad Stirbu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/cordova/PromisesPlugin-master/README.md b/cordova/PromisesPlugin-master/README.md new file mode 100644 index 0000000..3c1cb7a --- /dev/null +++ b/cordova/PromisesPlugin-master/README.md @@ -0,0 +1,39 @@ +# PromisesPlugin + +ES6-Promises polyfill for Cordova/PhoneGap + +# Motivation + +The web view components on Cordova supported platforms lack suport for ES6 Promise. A polyfill library bundled with the plugin fixes the limitation. However, as more plugin use promises, the application developer using these plugins will end up with multiple promise polyfill libraries. + +This plugin attempts to fix this situation by providing a Promise polyfill so that other plugins can rely on this functionality. + +# How to use + +Configure your plugin's plugin.xml by adding this dependency: + +``` + + +``` + +Cordova CLI takes care to install PromisesPlugin automatically: + +``` +$ cordova plugins add {yourPlugin} + +> Installing "{yourPlugin}" for {platform} +> Installing "es6-promise-plugin" for {platform} +``` + +This is all. ```window.Promise``` is available for use in your plugin. + +# Credits + +This plugin wraps [es6-promise](https://github.com/jakearchibald/es6-promise) in a Cordova/PhoneGap friendly way. + +# License + +The plugin is available under MIT license. diff --git a/cordova/PromisesPlugin-master/build b/cordova/PromisesPlugin-master/build new file mode 100644 index 0000000..a0eb473 --- /dev/null +++ b/cordova/PromisesPlugin-master/build @@ -0,0 +1,18 @@ +#!/bin/bash + +rm -rf .tmp +mkdir .tmp +browserify index.js > .tmp/bundle.js +uglifyjs .tmp/bundle.js -c -m > .tmp/bundle.min.js +cat > www/promise.js << EOL +/*! + * @overview es6-promise - a tiny implementation of Promises/A+. + * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) + * @license Licensed under MIT license + * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE + * @version 4.1.0 + */ + +`cat .tmp/bundle.min.js` + +EOL diff --git a/cordova/PromisesPlugin-master/index.js b/cordova/PromisesPlugin-master/index.js new file mode 100644 index 0000000..7e958bd --- /dev/null +++ b/cordova/PromisesPlugin-master/index.js @@ -0,0 +1,4 @@ +if (window.Promise === undefined) { + require('es6-promise').polyfill(); +} + diff --git a/cordova/PromisesPlugin-master/package.json b/cordova/PromisesPlugin-master/package.json new file mode 100644 index 0000000..6f495b4 --- /dev/null +++ b/cordova/PromisesPlugin-master/package.json @@ -0,0 +1,25 @@ +{ + "name": "es6-promise-plugin", + "version": "4.1.0", + "description": "ES6-Promises polyfill for Cordova/PhoneGap", + "main": "www/promise.js", + "dependencies": { + }, + "devDependencies": { + "es6-promise": "^4.1.0" + }, + "scripts": { + "build": "./build" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/vstirbu/PromisesPlugin.git" + }, + "author": "", + "license": "MIT", + "bugs": { + "url": "https://github.com/vstirbu/PromisesPlugin/issues" + }, + "homepage": "https://github.com/vstirbu/PromisesPlugin#readme", + "ecosystem": "cordova" +} diff --git a/cordova/PromisesPlugin-master/plugin.xml b/cordova/PromisesPlugin-master/plugin.xml new file mode 100644 index 0000000..bdaaafc --- /dev/null +++ b/cordova/PromisesPlugin-master/plugin.xml @@ -0,0 +1,26 @@ + + + Promise + Vlad Stirbu + MIT + es6-promise,polyfill + + + A polyfill for ES6-style Promises, tracking npm es6-promise + + + + + + + + + + + + + + diff --git a/cordova/PromisesPlugin-master/www/promise.js b/cordova/PromisesPlugin-master/www/promise.js new file mode 100644 index 0000000..d6ccda4 --- /dev/null +++ b/cordova/PromisesPlugin-master/www/promise.js @@ -0,0 +1,10 @@ +/*! + * @overview es6-promise - a tiny implementation of Promises/A+. + * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) + * @license Licensed under MIT license + * See https://raw.githubusercontent.com/jakearchibald/es6-promise/master/LICENSE + * @version 3.0.2 + */ + +!function t(e,n,r){function o(s,u){if(!n[s]){if(!e[s]){var c="function"==typeof require&&require;if(!u&&c)return c(s,!0);if(i)return i(s,!0);throw new Error("Cannot find module '"+s+"'")}var f=n[s]={exports:{}};e[s][0].call(f.exports,function(t){var n=e[s][1][t];return o(n?n:t)},f,f.exports,t,e,n,r)}return n[s].exports}for(var i="function"==typeof require&&require,s=0;st;t+=2){var e=ne[t],n=ne[t+1];e(n),ne[t]=void 0,ne[t+1]=void 0}J=0}function h(){try{var e=t,n=e("vertx");return Q=n.runOnLoop||n.runOnContext,c()}catch(r){return l()}}function p(t,e){var n=arguments,r=this,o=new this.constructor(w);void 0===o[oe]&&Y(o);var i=r._state;return i?!function(){var t=n[i-1];V(function(){return O(i,o,t,r._result)})}():M(r,o,t,e),o}function v(t){var e=this;if(t&&"object"==typeof t&&t.constructor===e)return t;var n=new e(w);return j(n,t),n}function w(){}function _(){return new TypeError("You cannot resolve a promise with itself")}function y(){return new TypeError("A promises callback cannot return that same promise.")}function m(t){try{return t.then}catch(e){return ce.error=e,ce}}function b(t,e,n,r){try{t.call(e,n,r)}catch(o){return o}}function g(t,e,n){V(function(t){var r=!1,o=b(n,e,function(n){r||(r=!0,e!==n?j(t,n):x(t,n))},function(e){r||(r=!0,T(t,e))},"Settle: "+(t._label||" unknown promise"));!r&&o&&(r=!0,T(t,o))},t)}function A(t,e){e._state===se?x(t,e._result):e._state===ue?T(t,e._result):M(e,void 0,function(e){return j(t,e)},function(e){return T(t,e)})}function E(t,e,r){e.constructor===t.constructor&&r===p&&e.constructor.resolve===v?A(t,e):r===ce?(T(t,ce.error),ce.error=null):void 0===r?x(t,e):n(r)?g(t,e,r):x(t,e)}function j(t,n){t===n?T(t,_()):e(n)?E(t,n,m(n)):x(t,n)}function S(t){t._onerror&&t._onerror(t._result),P(t)}function x(t,e){t._state===ie&&(t._result=e,t._state=se,0!==t._subscribers.length&&V(P,t))}function T(t,e){t._state===ie&&(t._state=ue,t._result=e,V(S,t))}function M(t,e,n,r){var o=t._subscribers,i=o.length;t._onerror=null,o[i]=e,o[i+se]=n,o[i+ue]=r,0===i&&t._state&&V(P,t)}function P(t){var e=t._subscribers,n=t._state;if(0!==e.length){for(var r=void 0,o=void 0,i=t._result,s=0;si;i++)e.resolve(t[i]).then(n,r)}):new e(function(t,e){return e(new TypeError("You must pass an array to race."))})}function N(t){var e=this,n=new e(w);return T(n,t),n}function U(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function W(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}function z(t){this[oe]=L(),this._result=this._state=void 0,this._subscribers=[],w!==t&&("function"!=typeof t&&U(),this instanceof z?q(this,t):W())}function B(){var t=void 0;if("undefined"!=typeof o)t=o;else if("undefined"!=typeof self)t=self;else try{t=Function("return this")()}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment")}var n=t.Promise;if(n){var r=null;try{r=Object.prototype.toString.call(n.resolve())}catch(e){}if("[object Promise]"===r&&!n.cast)return}t.Promise=z}var G=void 0;G=Array.isArray?Array.isArray:function(t){return"[object Array]"===Object.prototype.toString.call(t)};var H=G,J=0,Q=void 0,R=void 0,V=function(t,e){ne[J]=t,ne[J+1]=e,J+=2,2===J&&(R?R(d):re())},X="undefined"!=typeof window?window:void 0,Z=X||{},$=Z.MutationObserver||Z.WebKitMutationObserver,te="undefined"==typeof self&&"undefined"!=typeof r&&"[object process]"==={}.toString.call(r),ee="undefined"!=typeof Uint8ClampedArray&&"undefined"!=typeof importScripts&&"undefined"!=typeof MessageChannel,ne=new Array(1e3),re=void 0;re=te?u():$?f():ee?a():void 0===X&&"function"==typeof t?h():l();var oe=Math.random().toString(36).substring(16),ie=void 0,se=1,ue=2,ce=new C,fe=new C,ae=0;return F.prototype._enumerate=function(){for(var t=this.length,e=this._input,n=0;this._state===ie&&t>n;n++)this._eachEntry(e[n],n)},F.prototype._eachEntry=function(t,e){var n=this._instanceConstructor,r=n.resolve;if(r===v){var o=m(t);if(o===p&&t._state!==ie)this._settledAt(t._state,e,t._result);else if("function"!=typeof o)this._remaining--,this._result[e]=t;else if(n===z){var i=new n(w);E(i,t,o),this._willSettleAt(i,e)}else this._willSettleAt(new n(function(e){return e(t)}),e)}else this._willSettleAt(r(t),e)},F.prototype._settledAt=function(t,e,n){var r=this.promise;r._state===ie&&(this._remaining--,t===ue?T(r,n):this._result[e]=n),0===this._remaining&&x(r,this._result)},F.prototype._willSettleAt=function(t,e){var n=this;M(t,void 0,function(t){return n._settledAt(se,e,t)},function(t){return n._settledAt(ue,e,t)})},z.all=D,z.race=K,z.resolve=v,z.reject=N,z._setScheduler=i,z._setAsap=s,z._asap=V,z.prototype={constructor:z,then:p,"catch":function(t){return this.then(null,t)}},z.polyfill=B,z.Promise=z,z})}).call(this,t("/usr/local/share/npm/lib/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"),"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"/usr/local/share/npm/lib/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":3}],3:[function(t,e){var n=e.exports={};n.nextTick=function(){var t="undefined"!=typeof window&&window.setImmediate,e="undefined"!=typeof window&&window.postMessage&&window.addEventListener;if(t)return function(t){return window.setImmediate(t)};if(e){var n=[];return window.addEventListener("message",function(t){var e=t.source;if((e===window||null===e)&&"process-tick"===t.data&&(t.stopPropagation(),n.length>0)){var r=n.shift();r()}},!0),function(t){n.push(t),window.postMessage("process-tick","*")}}return function(t){setTimeout(t,0)}}(),n.title="browser",n.browser=!0,n.env={},n.argv=[],n.binding=function(){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(){throw new Error("process.chdir is not supported")}},{}]},{},[1]); + diff --git a/findedastier.keystore b/findedastier.keystore new file mode 100644 index 0000000..b0dd7c9 Binary files /dev/null and b/findedastier.keystore differ diff --git a/package.json b/package.json index 8af0e41..0cff9cf 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,67 @@ { - "name": "kinderspiele1", - "version": "1.1.1", - "description": "kinderspiele1: An Ionic project", - "dependencies": { - "gulp": "^3.5.6", - "gulp-sass": "^2.0.4", - "gulp-concat": "^2.2.0", - "gulp-minify-css": "^0.3.0", - "gulp-rename": "^1.2.0" - }, - "devDependencies": { - "bower": "^1.3.3", - "gulp-util": "^2.2.14", - "shelljs": "^0.3.0" - }, - "cordovaPlugins": [ - "cordova-plugin-device", - "cordova-plugin-console", - "cordova-plugin-whitelist", - "cordova-plugin-splashscreen", - "cordova-plugin-statusbar", - "ionic-plugin-keyboard", - "cordova-plugin-screen-orientation" - ], - "cordovaPlatforms": [ - "android" - ] -} + "name": "kinderspiele1", + "version": "1.1.1", + "description": "kinderspiele1: An Ionic project", + "dependencies": { + "cordova": "^7.0.0", + "cordova-android": "^6.2.3", + "cordova-plugin-compat": "^1.0.0", + "cordova-plugin-crosswalk-webview": "^2.2.0", + "cordova-plugin-device": "^1.1.6", + "cordova-plugin-file": "^4.0.0", + "cordova-plugin-insomnia": "git+https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin.git", + "cordova-plugin-media": "^3.0.1", + "cordova-plugin-screen-orientation": "^1.4.3", + "cordova-plugin-service-worker": "^1.0.1", + "cordova-plugin-splashscreen": "^4.0.3", + "cordova-plugin-statusbar": "^2.2.3", + "cordova-plugin-whitelist": "^1.3.2", + "es6-promise-plugin": "^4.1.0", + "gulp": "^3.5.6", + "gulp-concat": "^2.2.0", + "gulp-minify-css": "^0.3.0", + "gulp-rename": "^1.2.0", + "gulp-sass": "^2.0.4", + "ionic-plugin-keyboard": "^2.2.1" + }, + "devDependencies": { + "bower": "^1.3.3", + "gulp-util": "^3.0.8", + "shelljs": "^0.3.0" + }, + "cordovaPlugins": [ + "cordova-plugin-device", + "cordova-plugin-console", + "cordova-plugin-whitelist", + "cordova-plugin-splashscreen", + "cordova-plugin-statusbar", + "ionic-plugin-keyboard", + "cordova-plugin-screen-orientation" + ], + "cordovaPlatforms": [ + "android" + ], + "cordova": { + "plugins": { + "cordova-plugin-device": {}, + "cordova-plugin-splashscreen": {}, + "cordova-plugin-statusbar": {}, + "cordova-plugin-whitelist": {}, + "ionic-plugin-keyboard": {}, + "cordova-plugin-media": {}, + "cordova-plugin-insomnia": {}, + "es6-promise-plugin": {}, + "cordova-plugin-crosswalk-webview": { + "XWALK_VERSION": "22+", + "XWALK_LITEVERSION": "xwalk_core_library_canary:17+", + "XWALK_COMMANDLINE": "--disable-pull-to-refresh-effect", + "XWALK_MODE": "embedded", + "XWALK_MULTIPLEAPK": "true" + }, + "cordova-plugin-screen-orientation": {} + }, + "platforms": [ + "android" + ] + } +} \ No newline at end of file diff --git a/resources/android/icon/drawable-hdpi-icon.png b/resources/android/icon/drawable-hdpi-icon.png index b910093..f18f2f3 100644 Binary files a/resources/android/icon/drawable-hdpi-icon.png and b/resources/android/icon/drawable-hdpi-icon.png differ diff --git a/resources/android/icon/drawable-ldpi-icon.png b/resources/android/icon/drawable-ldpi-icon.png index 16cd5db..f9be909 100644 Binary files a/resources/android/icon/drawable-ldpi-icon.png and b/resources/android/icon/drawable-ldpi-icon.png differ diff --git a/resources/android/icon/drawable-mdpi-icon.png b/resources/android/icon/drawable-mdpi-icon.png index 64a6cbc..ac049d7 100644 Binary files a/resources/android/icon/drawable-mdpi-icon.png and b/resources/android/icon/drawable-mdpi-icon.png differ diff --git a/resources/android/icon/drawable-xhdpi-icon.png b/resources/android/icon/drawable-xhdpi-icon.png index 1605f69..3a293c5 100644 Binary files a/resources/android/icon/drawable-xhdpi-icon.png and b/resources/android/icon/drawable-xhdpi-icon.png differ diff --git a/resources/android/icon/drawable-xxhdpi-icon.png b/resources/android/icon/drawable-xxhdpi-icon.png index 56fb29e..af75757 100644 Binary files a/resources/android/icon/drawable-xxhdpi-icon.png and b/resources/android/icon/drawable-xxhdpi-icon.png differ diff --git a/resources/android/icon/drawable-xxxhdpi-icon.png b/resources/android/icon/drawable-xxxhdpi-icon.png index e4a9152..98026c5 100644 Binary files a/resources/android/icon/drawable-xxxhdpi-icon.png and b/resources/android/icon/drawable-xxxhdpi-icon.png differ diff --git a/resources/android/splash/drawable-land-hdpi-screen.png b/resources/android/splash/drawable-land-hdpi-screen.png index 66b12fe..c97f2ba 100644 Binary files a/resources/android/splash/drawable-land-hdpi-screen.png and b/resources/android/splash/drawable-land-hdpi-screen.png differ diff --git a/resources/android/splash/drawable-land-ldpi-screen.png b/resources/android/splash/drawable-land-ldpi-screen.png index 7dceec7..c774385 100644 Binary files a/resources/android/splash/drawable-land-ldpi-screen.png and b/resources/android/splash/drawable-land-ldpi-screen.png differ diff --git a/resources/android/splash/drawable-land-mdpi-screen.png b/resources/android/splash/drawable-land-mdpi-screen.png index 0dc2ba7..a333e06 100644 Binary files a/resources/android/splash/drawable-land-mdpi-screen.png and b/resources/android/splash/drawable-land-mdpi-screen.png differ diff --git a/resources/android/splash/drawable-land-xhdpi-screen.png b/resources/android/splash/drawable-land-xhdpi-screen.png index 39ae00c..84f154d 100644 Binary files a/resources/android/splash/drawable-land-xhdpi-screen.png and b/resources/android/splash/drawable-land-xhdpi-screen.png differ diff --git a/resources/android/splash/drawable-land-xxhdpi-screen.png b/resources/android/splash/drawable-land-xxhdpi-screen.png index 3f591b1..cb2e9f5 100644 Binary files a/resources/android/splash/drawable-land-xxhdpi-screen.png and b/resources/android/splash/drawable-land-xxhdpi-screen.png differ diff --git a/resources/android/splash/drawable-land-xxxhdpi-screen.png b/resources/android/splash/drawable-land-xxxhdpi-screen.png index 253e6f1..95cc056 100644 Binary files a/resources/android/splash/drawable-land-xxxhdpi-screen.png and b/resources/android/splash/drawable-land-xxxhdpi-screen.png differ diff --git a/resources/android/splash/drawable-port-hdpi-screen.png b/resources/android/splash/drawable-port-hdpi-screen.png index e0dbb62..79d9db8 100644 Binary files a/resources/android/splash/drawable-port-hdpi-screen.png and b/resources/android/splash/drawable-port-hdpi-screen.png differ diff --git a/resources/android/splash/drawable-port-ldpi-screen.png b/resources/android/splash/drawable-port-ldpi-screen.png index 8e93c2d..e7d668b 100644 Binary files a/resources/android/splash/drawable-port-ldpi-screen.png and b/resources/android/splash/drawable-port-ldpi-screen.png differ diff --git a/resources/android/splash/drawable-port-mdpi-screen.png b/resources/android/splash/drawable-port-mdpi-screen.png index 0aaad62..4415fbf 100644 Binary files a/resources/android/splash/drawable-port-mdpi-screen.png and b/resources/android/splash/drawable-port-mdpi-screen.png differ diff --git a/resources/android/splash/drawable-port-xhdpi-screen.png b/resources/android/splash/drawable-port-xhdpi-screen.png index 64c27f8..623d4e6 100644 Binary files a/resources/android/splash/drawable-port-xhdpi-screen.png and b/resources/android/splash/drawable-port-xhdpi-screen.png differ diff --git a/resources/android/splash/drawable-port-xxhdpi-screen.png b/resources/android/splash/drawable-port-xxhdpi-screen.png index f605e6a..88fb89b 100644 Binary files a/resources/android/splash/drawable-port-xxhdpi-screen.png and b/resources/android/splash/drawable-port-xxhdpi-screen.png differ diff --git a/resources/android/splash/drawable-port-xxxhdpi-screen.png b/resources/android/splash/drawable-port-xxxhdpi-screen.png index 2b993cf..fdfb49b 100644 Binary files a/resources/android/splash/drawable-port-xxxhdpi-screen.png and b/resources/android/splash/drawable-port-xxxhdpi-screen.png differ diff --git a/resources/icon.png b/resources/icon.png deleted file mode 100644 index bee7766..0000000 Binary files a/resources/icon.png and /dev/null differ diff --git a/resources/icon.psd b/resources/icon.psd new file mode 100644 index 0000000..da57d9e Binary files /dev/null and b/resources/icon.psd differ diff --git a/resources/splash.png b/resources/splash.png deleted file mode 100644 index cbddba0..0000000 Binary files a/resources/splash.png and /dev/null differ diff --git a/resources/splash.psd b/resources/splash.psd new file mode 100644 index 0000000..1bd2ac4 Binary files /dev/null and b/resources/splash.psd differ diff --git a/www/js/app.js b/www/js/app.js index a0cf877..db090cc 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -42,6 +42,7 @@ angular.module('kinderspiel', ['ionic', 'ngCordova','ngAnimate', 'ngDraggable', * Bildschirm in Landscape modus drehen und halten */ screen.lockOrientation('landscape'); + //$cordovaScreenOrientation.lockOrientation('landscape'); /* * Bildschirm aktiv halten einschalten