In order to make some proof of concept prototypes, I'm planning to add git functionality to my Xamarin Android app.
For doing so, I was taking a look at the libgit2sharp library, especially the latest prereleases that seem to be released with .netstandard 2.0.
The NuGet package installation works perfectly, but obviously, it fails when I try to make any call to the library because the missing library files that are not built in the libgit2sharp.nativebinaries project.
Is there any way I can build on my own these libraries?
If not, can you think about any other alternative?
Kind regards and thanks in advance
I have created an Android Application in that I want to implement "Linphone" for voice and video call.
I had download Library project from https://github.com/viv/linphone-android but missing some files in that library.
Can you give me some instruction for getting missing files in Windows OS for Eclipse.
So please provide me some links of complete library code and sample example.
Thanks.
Recently, I am researching Android DRM in the Android source.
Now, I know how to add 3rd DRM plugin library
(Please see frameworks/base/drm/libdrmframework/plugins, You can follow the example plugin passthru).
But Now I face an new problem:
If there serval plugins, How can I choose which DRM plugin to use from the JAVA code?
I have not found an API for it in the ANDROID API(http://developer.android.com/reference/android/drm/package-summary.html)
Any one Know it?
Hello,
I am a beginner and I want to learn how this works for which I am using eclipse and was trying to follow the tutorial here
For step2 it says to download latest version of the AndroidPlot Core Library from here http://androidplot.com/download/ but it says there is problem with download for which it says to download most recent stable snapshot artifacts from here
https://androidplot.jira.com/builds/browse/ANDROIDPLOT-TRUNK-177/artifact but I dont understand which one is the actual AndroidPlot Core Library to download from this link.
And if someone has an latest version of the AndroidPlot Core Library can you post here so that I can download it.
thanks.
Can someone help with this.
For the time being, this is the correct jar to add to your project.
Nick
How can I easily add WebRTC functionality to my android app so that I would be able to play video stream in MediaPlayer?
What library (.jar file) do I have to add to referencies?
Could you add some code example please?
Actually, there is no such ".jar" files for you to reference right now.
WebRTC is designed for web browsers, even if it can be build for android and iOS.
for your question, I think you may need to learn how to build WebRTC on Android or iOS.
for Android, you should know NDK and JNI first. then build whole webrtc projects or standalone VoE\ViE even NS\AECM\VAD\AGC modules for android.
for iOS, you should also build it by yourself, but you may need this help.
all of these info can be found on the internet, especially google group.
checkout following link : http://www.webrtc.org/reference/getting-started
I have added my project on github: https://github.com/SDkie/Webrtc-for-Android, you can fork and make changes in it.
Please take a look at http://www.webrtc.org/native-code/android.
It has all the information on how to build webRTC for android.
The java wrapper for the native webRTC libraries:
https://code.google.com/p/webrtc/source/browse/trunk/talk/app/webrtc/java/#java%2Fsrc%2Forg%2Fwebrtc
It has the instructions on how to build the native libraries.
It also has an example app that uses webRTC to talk to the https://apprtc.appspot.com.
https://code.google.com/p/webrtc/source/browse/trunk/webrtc/examples/android/media_demo/README
I could not find instructions on how to create an Android Studio Project and build it with gradle though. If anyone finds it, please share.
I hope it helps
One option is to use the crosswalk, you can create a native app using the crosswalk as a webview in your project.
In my case the Web-RTC worked without any problems.
Here are some tutorials on how to add the crosswalk on your project.
https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/
https://crosswalk-project.org/documentation/embedding_crosswalk.html
I hope this helps.