Added icons
2
android
@ -1 +1 @@
|
|||||||
Subproject commit 075ec6a0f6e77e524fdefa4f2bde88a2c6b4c828
|
Subproject commit 399ae864d242217e245a011e2d9464aab8890f7e
|
1324
package-lock.json
generated
@ -5,13 +5,15 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"build-app": "NODE_ENV=app vue-cli-service build --mode=app",
|
"build-app": "BUILD_TARGET=app vue-cli-service build",
|
||||||
"lint": "vue-cli-service lint"
|
"lint": "vue-cli-service lint",
|
||||||
|
"resources": "capacitor-resources -p android"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@capacitor/android": "^2.4.7",
|
"@capacitor/android": "^2.4.7",
|
||||||
"@capacitor/cli": "^2.4.7",
|
"@capacitor/cli": "^2.4.7",
|
||||||
"@capacitor/core": "^2.4.7",
|
"@capacitor/core": "^2.4.7",
|
||||||
|
"capacitor-resources": "^2.0.5",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
"vue": "^2.6.11"
|
"vue": "^2.6.11"
|
||||||
},
|
},
|
||||||
|
BIN
resources/android/icon/drawable-hdpi-icon.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
resources/android/icon/drawable-ldpi-icon.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/android/icon/drawable-mdpi-icon.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
resources/android/icon/drawable-playstore-512-icon.png
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
resources/android/icon/drawable-xhdpi-icon.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
resources/android/icon/drawable-xxhdpi-icon.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
resources/android/icon/drawable-xxxhdpi-icon.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
resources/android/icon/mipmap-hdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
resources/android/icon/mipmap-ldpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 1.6 KiB |
BIN
resources/android/icon/mipmap-mdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
resources/android/icon/mipmap-xhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
resources/android/icon/mipmap-xxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
BIN
resources/android/icon/mipmap-xxxhdpi/ic_launcher.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
resources/android/splash/drawable-land-hdpi-screen.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
resources/android/splash/drawable-land-ldpi-screen.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
resources/android/splash/drawable-land-mdpi-screen.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
resources/android/splash/drawable-land-xhdpi-screen.png
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
resources/android/splash/drawable-land-xxhdpi-screen.png
Normal file
After Width: | Height: | Size: 85 KiB |
BIN
resources/android/splash/drawable-land-xxxhdpi-screen.png
Normal file
After Width: | Height: | Size: 121 KiB |
BIN
resources/android/splash/drawable-port-hdpi-screen.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
resources/android/splash/drawable-port-ldpi-screen.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
resources/android/splash/drawable-port-mdpi-screen.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
resources/android/splash/drawable-port-xhdpi-screen.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
resources/android/splash/drawable-port-xxhdpi-screen.png
Normal file
After Width: | Height: | Size: 95 KiB |
BIN
resources/android/splash/drawable-port-xxxhdpi-screen.png
Normal file
After Width: | Height: | Size: 114 KiB |
BIN
resources/icon.png
Normal file
After Width: | Height: | Size: 123 KiB |
BIN
resources/splash.png
Normal file
After Width: | Height: | Size: 199 KiB |
@ -1,7 +1,7 @@
|
|||||||
// vue.config.js
|
// vue.config.js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
publicPath: process.env.NODE_ENV === 'production' ? '/rummy-timer/' : '/',
|
publicPath: process.env.BUILD_TARGET == 'app' ? '/' : '/rummy-timer/',
|
||||||
outputDir: process.env.NODE_ENV === 'production' ? 'dist' : process.env.NODE_ENV === 'app' ? 'app' : 'dist',
|
outputDir: process.env.BUILD_TARGET == 'app' ? 'app': 'dist',
|
||||||
css: {
|
css: {
|
||||||
loaderOptions: {
|
loaderOptions: {
|
||||||
// by default the `sass` option will apply to both syntaxes
|
// by default the `sass` option will apply to both syntaxes
|
||||||
|