├── .gitignore ├── README.md ├── android ├── .gitignore ├── app │ ├── .npmignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── capacitor.config.json │ │ │ └── public │ │ │ │ ├── cordova.js │ │ │ │ ├── cordova_plugins.js │ │ │ │ ├── css │ │ │ │ └── app.99c21d8d.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── app.7ffcfb41.js │ │ │ │ ├── app.7ffcfb41.js.map │ │ │ │ ├── chunk-vendors.8627a29e.js │ │ │ │ └── chunk-vendors.8627a29e.js.map │ │ │ │ └── native-bridge.js │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── vuecapacitordemo │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-ldpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── launch_splash.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ └── icon.png │ │ │ ├── mipmap-ldpi │ │ │ └── icon.png │ │ │ ├── mipmap-mdpi │ │ │ └── icon.png │ │ │ ├── mipmap-xhdpi │ │ │ └── icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── icon.png │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── config.xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor.settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── babel.config.js ├── capacitor.config.json ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── assets └── logo.png ├── components ├── About.vue └── Home.vue └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/.npmignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/capacitor.config.json -------------------------------------------------------------------------------- /android/app/src/main/assets/public/cordova.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/assets/public/cordova_plugins.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/assets/public/css/app.99c21d8d.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/app/src/main/assets/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/favicon.ico -------------------------------------------------------------------------------- /android/app/src/main/assets/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/index.html -------------------------------------------------------------------------------- /android/app/src/main/assets/public/js/app.7ffcfb41.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/js/app.7ffcfb41.js -------------------------------------------------------------------------------- /android/app/src/main/assets/public/js/app.7ffcfb41.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/js/app.7ffcfb41.js.map -------------------------------------------------------------------------------- /android/app/src/main/assets/public/js/chunk-vendors.8627a29e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/js/chunk-vendors.8627a29e.js -------------------------------------------------------------------------------- /android/app/src/main/assets/public/js/chunk-vendors.8627a29e.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/js/chunk-vendors.8627a29e.js.map -------------------------------------------------------------------------------- /android/app/src/main/assets/public/native-bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/assets/public/native-bridge.js -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/vuecapacitordemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/java/com/example/vuecapacitordemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-ldpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-ldpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/drawable/launch_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-ldpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/src/components/About.vue -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/vue-capacitor-ionic-app/HEAD/src/main.js --------------------------------------------------------------------------------