Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 ?

like image 912
Amal p Avatar asked Jan 25 '23 01:01

Amal p


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
like image 101
Pavneet_Singh Avatar answered Jan 27 '23 15:01

Pavneet_Singh