Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't import module in Android Studio Arctic Fox

Next/Finish button does not become enabled even after selecting the right module path. It does not show any error. Android studio version is 2020.3.1 (Latest as of 3 August, 2021).enter image description here

like image 904
ZeroOneZeroR Avatar asked Aug 03 '21 13:08

ZeroOneZeroR


People also ask

Is Android studio arctic fox stable?

Android Studio - Arctic Fox | 2020.3. 1 Patch 4 is now available in the Stable channel. If you already have an Android Studio build on the Stable channel, you can get the update by clicking Help > Check for Update (Android Studio > Check for Updates on macOS). Otherwise, you can download it here.

How do I import a library module?

Import a moduleClick File > New > Import Module. In the Source directory box, type or select the directory of the module(s) that you want to import: If you are importing one module, indicate its root directory. If you are importing multiple modules from a project, indicate the project folder.

What is import Android studio?

Import as a Project: Start Android Studio and close any open Android Studio projects. From the Android Studio menu click File > New > Import Project. Alternatively, from the Welcome screen, click Import project (Eclipse ADT, Gradle, etc) Select the Eclipse ADT project folder with the AndroidManifest.


1 Answers

[ Fixed ] in Android Studio Bumblebee (2021.1.1)

This issue was fixed in Android Studio Bumblebee. Please Update Android Studio to Bumblebee or Latest Version


This Bug is in Android studio Arctic Fox,

Many people are posted this issue on issuetracker but nobody get solution from Android studio team side. here is some links of that issues posted on issuetracker.
Link 1 , Link 2 , Link 3 , Link 4 , Link 5 , Link 6 , Link 7

So here is Temporary Workaround

  • copy your-module folder in your project directory

  • Add below line in settings.gradle

    include ':your-module' // your-module is module name  
  • click sync now

  • Done

like image 76
Nikunj Paradva Avatar answered Oct 06 '22 01:10

Nikunj Paradva