How to import Scringo library in Xamarin or Android Studio? - android

i'm new to android development and i'm using Xamarin and Android Studio ... i have created my Hello World App successfully and i have downloaded Scringo SDK.
in it's tutorial he is using eclipse.
so in tutorial he said to right click in eclipse workspace and click on import.
but i'm using Xamarin and i can't find Import option.
please if anyone has any idea tell me :). thanks and sorry for my English.
http://cdn1.scringo.com/resources/v1/import.jpg
where i can find this import option ?

You would need to create a C# to Java binding project. It is very easy but might need some tweaking depending on the Java library.
http://docs.xamarin.com/guides/android/advanced_topics/java_integration_overview/binding_a_java_library_(.jar)/

Related

Import Packages Issue in Android Studio

I'm new to programming and computer science in general. I've looked around and Atomic Kotlin seems to be the most organized and comprehensive course for new learners. I'm using Android Studio to learn how to program.
When I get to Introduction to Objects > Testing the package atomictest doesn't import for any of the following exercises.
I have created a sample program to check if the package and import tools worked in general and the tools worked fine. Then, I tried to see if IntelliJ IDEA had the same issue with the course and importing atomictest worked just fine. So it seems that there is a compatibility issue or a referencing issue with Android Studio and Atomic Kotlin.
I went into the Packages portion of the project tree and went to the actual *.kt file containing the package and it checks out.
Here's what the error looks like within the Android Studio IDE
I could continue with IntelliJ but I want to learn using Android Studio. Why is this issue happening and how do I fix it? Thank you in advance.

How to link DroidAR's ModelLoaderAdapters to my project in android studio?

Hi I'm currently trying to build an app by using the location based ar provided by DroidAR but I could not figure how how could I use the Model Loader Adapter provided by DroidAR. The demo they have given is created in Eclipse but I'm using the newest version of Android studio. If anyone has tried out, could you please explain to me what should I do now :( thanks
if you have the eclipse project you can import it in android studio, here is a link
but if you have its jar file you can add it to your project like this

Import android project in Unity

I have an android project which I created in eclipse. Is it possible to import it in Unity for further development. If yes, please let me know the steps
No. Unity is only for developing Unity projects.
You can create external libraries (in Eclipse) which can be called from within Unity, but you cannot edit or develop them from within Unity.
you can create plugin for communicate with Unity. C# can call java method. You can read this link for create a plugin: http://docs.unity3d.com/Manual/PluginsForAndroid.html

How to use this project in android studio?

I am very new to android development. Actually today is my second day. I downloaded this code for an app and I want to test it if it works or not. I downloaded it from here.
I am using android studio but I have no idea where to import this code so I can test it. I tried to search google but I am not sure if I am looking for package import or java or android application library. This all is very confusing to me. Can someone tell me how can I import and run this code in android studio IDE.
thanks
Go with the Android Development Bundle. It is Eclipse with an SDK build by Android for Android. It will make things much easier on you.
https://developer.android.com/sdk/index.html
After that, you can simply go to File->Import.
try this out Migrating from eclipse to studio

OpenCV on Android Using Eclipse

I'm having a hell of a time importing OpenCV into my Android project. I've already tried this tutorial:
http://opencv.itseez.com/doc/tutorials/introduction/android_binary_package/android_binary_package.html
and it did not work because Eclipse would not recognize the existing projects in the directory. So after much searching I came across this trunk:
https://code.ros.org/svn/opencv/trunk/opencv/
and was able to import it into my workspace in Eclipse. Eclipse now recognizes the sample projects, but now the problem is that there are no OpenCV library files. So all the calls to import different classes result in errors. Shouldn't there be a opencv.jar somewhere? I've seen various posts that mention having to build the library but unfortunately I don't have the slightest clue how to do that. I need something with step by step instructions. I'm running Windows 7 64-bit.
Thanks!
You should download the latest OpenCV 4 Android here:
http://opencv.org/downloads.html
And read these tutorials to get you started (in this order roughly):
Introduction into Android Development
OpenCV4Android SDK
Android Development with OpenCV
OpenCV4Android Reference
If you want to use OPEN CV in your android apps, for example if you need to read some strings from an image in your android and you are new in using OPEN CV. Then download the pre-built OpenCV library for Android from here:
http://sourceforge.net/projects/opencvlibrary/files/opencv-android/2.3/
After downloading, import OpenCV-2.3.1 into Eclipse using File-->Import...-->General-->Existing Project Into Workspace.
In your project's properties, Under Android, add the OpenCV2.3.1 library (press Add.. on the right and select OpenCV2.3.1).
Good luck!
You might want to take a look at this project: https://github.com/billmccord/OpenCV-Android
I was able to run opencv applications on my android phone with the help of this port.
installed the Win-superpack?
I recommend getting the latest .tar, extract and use it. Worked for me.
I posted about this on a duplicate question. Make sure you have the android NDK installed! Or, consider using JavaCV instead. It is much easier to install.

Categories

Resources