5

Here is the image

When I try to import module in another project I cant click on finish button.

Hamna
  • 59
  • 7
  • Does this answer your question? [Can't import module in Android Studio Arctic Fox](https://stackoverflow.com/questions/68636809/cant-import-module-in-android-studio-arctic-fox) – mike47 Nov 05 '21 at 19:33

2 Answers2

0

The folder you want to import should contain a Gradle file in itself for Android Studio to recognise. Can you check if that folder Little Genius has a Gradle file in it?

If it has a Gradle file, you would see a section like this to name the module.

enter image description here

The Finish button would be enabled after that.

  • 1
    It is a Unity based project and I was doing it by the following steps https://stackoverflow.com/a/45138926/16190312. – Hamna Jul 27 '21 at 09:12
  • Yes, that sounds right. So basically it is telling the same. You need the folder to be imported to have a Gradle file. Since unity projects do not have that, that guy seems to have imported the project in Android Studio. (IMPORTED PROJECT not MODULE). – Pranav Jadhav Jul 27 '21 at 09:15
  • 1
    Yeah, I did it. The project got a gradle file created. But when i go to my project where i want to have this apk, It shows no gradle and I cant click on finish button. – Hamna Jul 27 '21 at 09:27
  • I think you are choosing the wrong option from `File > New` menu. You might be selecting `New module`, but you should probably select `Import module`. – Pranav Jadhav Jul 27 '21 at 09:41
0

I think this is a Android Studio Arctic Fox bug. I downloaded Intellij Idea, open project, file > new > module. That's works; enter image description here

enter image description here

Murat Öter
  • 73
  • 1
  • 3
  • 7