Import netbeans android project into android studio

I was working on a project on netbeans, which turned out to be the least intuitive IDE for android, now I'm trying to switch to android studio. I can’t find a way to either properly export the netbeans project, or import the netbeans project into android studio.

How to import netbeans android project into android studio? it has something to do with gradle I suppose ..

+5
source share
2 answers

Maybe late, but I think it might help someone else. Android Studio can import netbeans android projects. Simply open the import project window by choosing File β†’ New β†’ Import Project and specify the root of the netbeans project. Android Studio does the rest.

+1
source

A little late, but I partially ran into this and decided it so far. You can add .jar files to app / libs, paste it there and right click on it -> add library. (I believe)

It should look like this. Android.jar in Libs

This would be partly a solution, you also need to create android xml.

0
source

Source: https://habr.com/ru/post/1204880/


All Articles