Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am admittedly not experienced in developing for android. I am looking for some API that lets me browse the users files, without installing a separate app via intents. Right now I have found the OI File Manager, but that uses intents to get it's work done. Is there another file manager library available for me to use? Preferably one that is easy to set-up and use.
This is a late answer but I worked on creating an android file explorer recently. https://github.com/mburman/Android-File-Explore
Its really straightforward. Essentially its just 1 file that you would need to integrate into your application - doesn't use intents either.
Why don't you create your own filebrowser using this example?
OpenIntent's FileManager is in fact open source:
https://github.com/openintents/filemanager
It is licensed under Apache License, Version 2.0.
You can integrate its source code in your application.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have been looking for an image editing SDK for Android, something that includes an option for custom stickers. A good example would be the Adobe Creative SDK (previously the Aviary SDK), though the current build only supports customizing which features to include, with no option to add your own stickers. Another good example would be the Fotor SDK, which did support adding your own stickers, but it is now under development, with no way of accessing the previous version (that I know of).
There are a few more editing SDKs available, including the PhotoEditor SDK by img.ly and CLImageEditor, but only for iOS. If anyone knows of an Android editing SDK with a sticker feature, or if someone could point me toward some decent resources on the subject (which I have not been able to find) so I can create my own, it would be greatly appreciated.
The Img.ly PhotoEditor SDK is now also available for Android. You can also easily add your own assets like stickers and fonts.
You can get a reference to the stickers array like so:
ArrayList<ImageStickerConfig> stickers = PhotoEditorSdkConfig.getStickerConfig();
For the complete example consult the docs
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Well i am trying to find a good software which helps me in coding. Hassle free and a bit helpy?
As of now eclipse is generally used by most of the people around the world. You can download the same either from eclipse official site and download the plugin for the same
Or you can use Android studio for the same. To do the same you can download it from the official android developers site https://developer.android.com/sdk/index.html .
Do keep in mind that after some time, android studio may be used more by people as it is developed only for android development and also google is stopping to provide support for eclipse.
One more thing that, once you download the software, you will need to install sdk's for the api level for which you want to develop
All the support for development for android is available at the above mentioned link. Information about all the libraries are also available at the same. For more resources, you can always use youtube for the possible leacture series and also use stackoverflow and codata whenever you are stuck.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In my company we have started development in android application.
Our problem is there are multiple developers for same application and usually need to work on same files so it is really difficult to integrate work each one of us does. Also we are looking for versioning system also .
For php development we used VSS where on one file only developer can work which was fine but unable to use it for android since we moved to ubuntu and everyone is having their own eclipse setup.
Please suggest solution.
Thanks in advance.
So you are looking for a versionning control system. I recommend to use GIT, you can host the remote on github (as it's free for public repository), on bitbucket (for 5 users private repository) or on your own server with GitLab
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for an open-source library for android (Jar), in which I can open documents or pdf files. I have searched the net and haven't found anything suitable or stable.
My main goal is to show some encrypted files, which my application will decrypt and pass the file to the viewer; meaning that the whole procedure should be secured. I cannot pass the decrypted file to google-docs or any 3rd-party application, due to security issue.
Any help will be appreciated.
Thank you all for your time.
I'd try Apache POI, the Java API for Microsoft documents. Its based on Java and I've seen it used in Android before.
I haven't used it myself though, so I can't accredit to how well it works.
Check out the source code of APV - it's a PDF viewer based on MuPdf library - both are free. You can probably assemble something quickly.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to create an open source application for Android that will be available through a repository control version system. The problem is pretty fundamental, I need a tutorial that will cover the basics of licensing & how to properly maintain and create open source project (application).
First of all, find a proper license that suits for your needs.
Maybe you can begin with this : http://en.wikipedia.org/wiki/Software_license and then dig into the different Opensource licenses : there are a lot.
http://www.github.com is a good challenger to host opensource projects. The help is great if you need to learn Git.
You will be the owner of the project and you will be able to accept or refuse contributions. Later, you will be able to give more rights to trusted buddies that will help you building the software (because when success rise, you won't be able to handle all the submissions).
I suggest you create an empty project and pratice on it, alone.
You can delete it when you feel enough comfortable with the interface, actions to do, etc...
Do not start directly with your final project.
You will make mistakes, better to do them on a dummy project.
Good luck :)