1

I am trying to use Codenvy to develop, and I am switching from Android Studio. I am in the middle of a project. How can I transition? Can I use a special import feature? I have already tried to copy and paste the code, but a lot of libraries don't seem to be there. If you need to take a look at my source code, then just search up "calc-nigma" in Github search and you can click on the option that is made by beekaydev. Thank you in advance.

BeekayDev
  • 13
  • 4

1 Answers1

1

The Problem is not with your code but the dependencies Codenvy is using is Maven while it seems that your application may be using Gradle dependencies.

For the Support of Answer:

  1. Maven uses pom.xml file to build your project.
  2. Gradle uses build.gradle file to build the project.

If you want to move your project to Codenvy try migrating your Gradle build to Maven build using this thread Migrating Gradle build.gradle to Maven pom.xml.

Hope this Helps!

Community
  • 1
  • 1