Use AndroidX artifacts checkbox missing from AndroidStudio(Version 3.6.1), When creating a new project?

Viewed 2956

A checkbox called use AndroidX artifacts is seen in android studio, when creating a new project(screenshot below)

enter image description here

But in my case its missing. Android studio version 3.6.1(screenshot below)

enter image description here

What could be the reason for this ?

1 Answers

In 3.6.1, Androidx is enabled by default along with enableJetifier.

You can verify it in the gradle.properties files with values as

android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
Related