Back to Cordova

2022 06 30

slack-digest/2022-06-30.md

latest1.5 KB
Original Source

Cordova Slack Digest

Thu, 30 Jun 2022 08:22:35 GMT

User count: 4692

Join the conversation at slack.cordova.io

Channel #cordova-android (4 messages)


Wed, 29 Jun 2022 13:29:17 GMT

@norman137 says

Being on a mac, your paths will be different, but ensure you have the following variables set:

export

#best to have both set but they should be equal.
export ANDROID_SDK_ROOT="/development/android/"
export ANDROID_HOME=$ANDROID_SDK_ROOT

# ensure you have cmdline-tools installed in SDK Manager. 7.0 is the current latest.
export PATH="$PATH:$ANDROID_SDK_ROOT/cmdline-tools/7.0/bin"

# Ensure you have platform tools installed in SDK manager
export PATH="$PATH:$ANDROID_SDK_ROOT/platform-tools/"

# Ensure you have the android emulator installed in SDK Manager
export PATH="$PATH:$ANDROID_SDK_ROOT/emulator/"

# Ensure you hvae build tools 30.0.3 installed in sdk manager. Will require showing obsolete packages.
export PATH="$PATH:$ANDROID_SDK_ROOT/build-tools/30.0.3/"```

Wed, 29 Jun 2022 23:32:11 GMT

@mathewp.94 says

Thats for the latest version of cordova-android right?

Wed, 29 Jun 2022 23:51:44 GMT

@norman137 says

yes

Thu, 30 Jun 2022 00:51:09 GMT

@mathewp.94 says

Do you know if there is a record somewhere of what versions to use for cordova-android v9.1.0?