Trying to open an app with decompiled app files [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I found an app called (TinyTelnet Client )it's an open-source telnet client for android. When I download the source files I only get the java files so I Downloaded the app and decompiled it with an app editor. I think this gave me the manifest and layout xml and res folder files that were not included In the source code. Now my question is. How can I use these files to open the project in android studio so I can modify and run the application ?

You need to ask authors to send you the source code, if it's really an open source project.
Nevertheless, you can find all information about android projects and compiling in official docs: https://developer.android.com/guide/
I bet, it will take a lot of time to build project correctly this way.

Related

Android Java Project [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I have Downloaded from github a java Project for Android (food App) and when open it in android Studio it opens on Project not android, so when change it from the menu many other folders appears and understand nothing, What should do to open a project just downloaded from git hub to work on and edit it? I'm a very beginner.
If it is a proper Android project you should be able to switch to Android view. Tap the title that says 'Project' above all the folders and files you mentioned. It should show a dropdown with 'Android' as the last item. Select that item and you should see what you're looking for. If no Android option is available from dropdown, it is not a proper Android project.

how I create a Java web application in visual studio code? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I would like to know if there is any command to create a Java Web Project like the command Create Java Project , in Visual Studio Code.
I need to create a Java Web Application from scratch and I don't know the folder structure that Visual Studio Code uses.
Thanks
There is no direct template available in Visual Studio Code that does this. One option is to clone an existing GIT repo with a skeleton that matches the stack you need. For example like they explain in Java Web Apps with Visual Studio Code.
Another option is you visit a generator like JHipster or Yeoman and let them generate a project and folder structure for you which you in turn load in Visual Studio Code. Note that Visual Studio Code can load any folder structure and does not mandate a folder structure itself.
P.s. you might need to install a number of extensions in Visual Studio Code to work properly with Java based web projects. A quick scan reveals plenty of those in the marketplace.

I'm new in java. How to build a maven project in Intellij? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I just want to build a opensource program, [program]: https://qupath.github.io
However I barely used Java and maven before, I downloaded the code of itself, but, I don't know how to build or run the code..
I already watched several utube videos, but It doesn't help. I got problem at a below point.
If you need to work with a Maven project (in good shape) with recent versions of IntelliJ, you should just "File -> Open" the folder containing the pom.xml file.
After a bit of pondering, you should be able to right-click on the class you need and choose "Run" or "Debug".

how to use a processing library in eclipse? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to play an audio file in a java program I have written in Eclipse. Processing has a very good library for playing audio files which I would like to use in Eclipse. I have followed and completed the directions in this link:
https://processing.org/tutorials/eclipse/ to be able to write Processing java code in Eclipse. I am unclear how one goes about downloading and using Processing libraries in Eclipse. All ideas and links explaining how to download and use this java library: https://processing.org/reference/libraries/sound/index.html in Eclipse would be much appreciated! Thank you for your help!
You'd follow pretty much the same steps- add the library jar(s) to your classpath, and then use the classes in those jars.
For example, if you want to use the Processing library minim, you would simply download the zip file, and then extract the jars within to whatever directory you want. Then you'd right-click your project in eclipse, go to properties, then Java build path. Go to the libraries tab, then just select the minim jar(s) to add them to your classpath.
Then you can use the minim classes just like you can use any other Java library.

How to export android application from eclipse in this format? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Does anyone know how to export a android application in this format? http://imgur.com/gRuFXra
All im getting is an apk file(know thats for installing the app on google play) and a file(anyone know what this is for)?
An APK file is a binary installation file. If you actually want to install and run your app on an Android device, an APK file is what you want.
If you just want a copy of your Android projecct, copy your entire project directory. No export function is needed for that.
An apk file is for installing anywhere. Google play or side loading or any other app store. Its the equivalent of a .exe for Android. That's what you need. If you want the other thing, just go to the directory where you saved your files, that's all it is.

Categories

Resources