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 am writting an application that will send MMS messages from an android phone and I am trying to follow the instructions on this post:
How to send image via MMS in Android?
My problem now is I can't find the libraries used there, like com.google.android.mms.*
Can anyone point me to that?
Is there any MMS library I can plug in my project? It is kinda weird that google does not provide that for the developers...
Thanks,
Joao Paulo Farias
you can get it this way
Class pduparserclass = Class.forName("com.google.android.mms.<the class>");
since the class is present on the device but not in the sdk. this will not work on the emulator
One way is to download the jar, and have it added to your build path.
You can download at http://www.java2s.com/Code/Jar/a/Downloadandroidsrcjar.htm
com.google.android.mms is an internal package in Android's source code. It is not intended to be used by other apps.
The link you posted already contains code on how to send an MMS using the proper API in aioobe's answer (who in turn linked to another answer that had it).
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 1 year ago.
Improve this question
I am working java FX application and I want to upload images from application to firebase storage.
I have integrated firebase admin SDK for core java.
Now I can manage firebase database easily. But now, I want to work on Uploading images and I could not find any example or tutorial that is easy or understandable.
All I found, is related to android but I need it in core java.
Please suggest me proper example or help me out.
I will be very thankful to you.
Take a look at OkHTTP. It works for both Android and pure Java. This answer gives you a template for uploading.
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 apologize if this question is too broad. I am looking to implement the external library Floating Action Button for my Android Studio project, but I am unable to find the documentation for the methods in Java that I should be using to implement its functionality, such as expanding the FAB into several other FABs, as shown in the Screenshot portion of the link.
I have already added the dependency to my gradle and com.github.clans.fab.FloatingActionButton header to my XML layout file.
The reason I am asking is because I've come across several libraries on Github that have minimal descriptions and no documentation. How does someone learn the methods and classes for external libraries like this without them? There must be something I am misunderstanding here.
How does someone learn the methods and classes for external libraries like this without them?
Review the source code of the sample app.
Or, review the source code of the library.
Or, search for com.github.clans.fab on your favorite search engine to see if anyone has a blog post or other sort of article on the library.
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'm trying to create an app for Android that simply sends a command to an SSH server. No response needed, I just need to be able to send a command. I was wondering if there's any java library out there that I could use?
No advanced stuff needed, just a pure connection to send the command.
You are searching for JSch.
Other libs are jaramiko, paramiko, trilead-ssh2 . A place where you can browse the source for trilead is the connectbot project. Please notice that connectbot also uses this unmaintained lib.
It also exists a commercial SSH Java lib: J2SSH Maverick
Note: Answer refactored due to comment.
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 3 years ago.
Improve this question
I am looking for a video editing library in Android.
Editing tasks:
Appending video to the end of another video.
Adding sound track to the video.
Adding text on top of the video.
Giving effects to the video (Heat, Sepia)
Video library can be in Java or native language(C, C++).
Please let me know if anybody has worked on this as i want to make one for Android smartphones.
http://www.xuggle.com looks promising but they have developed this for desktop and server environments and not for mobiles.
thanks in advance.
You have to use the source code to use video editing. Since it is not a mandatory feature, the editing classes and JNI libs will not be available in the SDK.
In ICS there are libvideoeditor, that used by standard MovieStudio. There are also JNI bindings for it.
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 6 years ago.
Improve this question
I have downloaded facebook-java-api-3.0.2-bin from
http://code.google.com/p/facebook-java-api/
for connecting to face book.I want to use this api in my java application to connect Facebook.I am developing a desktop application for this purpose.I have created account on Face book and registered as a developer.
Is it possible to connect Facebook from my java application?
If yes please, can some one send me the example code for that and treat me as a New Bee in this facebook integration?
Thanks in advance.
Have you tried out the various examples available in the api wiki?
http://code.google.com/p/facebook-java-api/wiki/Examples
Google also returns various tutorial pages:
http://programmaremobile.blogspot.com/2009/01/facebook-java-apieng.html
http://www.socialjava.com/socialjavastepbystep.html
You should try working through some of these and posting specific questions about problems you run into.
Note that the facebook-java-api project is now dead.
Use instead:
http://restfb.com/