RUN JAVA PROJECT IN ANDROID STUDIO
You can compile and run java module as stand alone java project in Android Studio IDE. Follow the below steps
- Open your Android project in Android Studio. If you do not have one, create one.
- Click File > New Module. Select Java Library and click Next.
- Fill in the package name, etc and click Finish. You should now see a Java module inside your Android project.
- Add your code to the Java module you’ve just created.
- Click on the drop down to the left of the run button. Click Edit Configurations…
- In the new window, click on the plus sign at the top left of the window and select Application
- A new application configuration should appear, enter in the details such as your main class and classpath of your module.
Comments
Post a Comment