Hi beginners or not !
Today i will show you how to make an awesome mobile app from scratch with VueJS and Capacitor, directly compatible with iOS and Android mobile device.

The first question is

How it’s work ?

Did you know CapacitorJS ?

CapacitorJS is full package to set Node app compatible with iOS and Android,

The first step is the requirement:

  • Android Studio with the latest SDK
  • XCode latest version

and now you can start.

Create a basic VueJS app with @vue/cli packages

vue create app
Enter fullscreen mode Exit fullscreen mode

set the configuration as you want, not very important at this step.

ok then,

install CapacitorJS on your project

npm install @capacitor/core @capacitor/cli
Enter fullscreen mode Exit fullscreen mode

now you can type this command:

npx cap init
Enter fullscreen mode Exit fullscreen mode

respond to the questions,

so now very important step,
inside the capacitor.config.json file, change

webDir: "www"
Enter fullscreen mode Exit fullscreen mode

to

webDir: "dist"
Enter fullscreen mode Exit fullscreen mode

ok you can build your project

npm run build
Enter fullscreen mode Exit fullscreen mode

and now, it's ready to do the best thing :

Android

npx cap add android
Enter fullscreen mode Exit fullscreen mode

iOS

sudo gem install cocoapods
npx cap add ios
Enter fullscreen mode Exit fullscreen mode

and now do the magic thing:

npx cap copy
Enter fullscreen mode Exit fullscreen mode

wow !

Now you can open XCode or Android Studio with this command :

// Android Studio
npx cap open android
// XCode
npx cap open ios
Enter fullscreen mode Exit fullscreen mode

Android Studio
Build Android App

XCode
Build iOS App

Very awesome no ?

Note

For iOs you need to install xcode dependency, follow XCode install instruction to perform this.

and for lazy people
https://gitlab.com/Simerca/vuejs-mobileapp-exemple

Références

  • VueJS https://vuejs.org/
  • CapacitorJS https://capacitorjs.com/
  • Android Studio https://developer.android.com/studio
  • XCode https://apps.apple.com/us/app/xcode/id497799835?mt=12
Logo

前往低代码交流专区

更多推荐