Apache Cordova

来自Gea-Suan Lin's Wiki
跳转到导航 跳转到搜索

Apache Cordova是一套应用程式开发框架。

安装

这边提到的是Ubuntu下的安装,包括了相依性的Android Studio与Cordova。

Android Studio

先安装Android Studio最新版:

sudo add-apt-repository -y https://launchpad.net/~maarten-fonville/+archive/ubuntu/android-studio
sudo apt install -y android-studio-4.2

然后:

  • 打开Android Studio的SDK Manager,安装22与29版。
  • 另外打开AVD Manager建立一个ARM的模拟器(用在需要同时跑VirtualBox的时候,因为无法在VirtualBox启动时使用需要KVM的x86模拟器,这时后可以用这个方法避开)。

Cordova

在有nvm或是其他类似环境下(像是n)安装Cordova:

npm install -g cordova

Gradle

在开发Android的环境中会需要Gradle,但Ubuntu内建的版本太旧(4.x):

# NOT RECOMMENDED
sudo apt install -y gradle; sudo apt clean

建议用其他方式装,像是mise

mise use -g gradle@8

使用

先建立hello这个专案:

cordova create hello

增加Android环境:

cordova platform add android

跑起来,其中--target可以不加,系统会选一个预设值用:

cordova run android --target="Pixel_2_API_22"

Android上的除错可以透过adb取得,可以透过grep过滤chromium:字串,降低过多的讯息:

adb logcat
adb logcat | grep chromium:

外部连结