I am new to android and I encountered the following problem on the following lines:
import static com.googlecode.javacv.cpp.opencv_core.*;
import static com.googlecode.javacv.cpp.opencv_imgproc.*;
import static com.googlecode.javacv.cpp.opencv_highgui.*;
The error is the import com.google can not be resolved.
I have included the javacv files in the project. The javacv sample programs are working fine but when I try to make my own app I am encountering this problem.
It'll be really helpful if someone can point out the mistake I am making and correct it.
I have added a screen shot of my work. Please do help. Thanks!
There is no package named com.googlecode in your project.You need to include opencv's libraries as mentioned in this tutorial.You can then use org.opencv.{required_library_name}
Related
I try integrate AndEngine Library to my project I download Lib from AndEngine , and download some extension but I find problem with multi-touch
this problem I find this importing
import org.anddev.andengine.util.SystemUtils;
I search and I find the soluation
https://gamedev.stackexchange.com/questions/48427/cant-set-up-andengine-gles2-anchorcenter-examples-extensions
I try it and it solve my problem
but I still have some problems in some imports
import org.anddev.andengine.input.touch.controller.BaseTouchController;
import org.anddev.andengine.input.touch.TouchEvent;
import org.anddev.andengine.input.touch.detector.BaseDetector;
what I missing , any one can help me
These imports are for AndEngine-GLES1, you have to use the new packages (org.andengine)
I downloaded an Android Project and got some errors.
How can I use this imports in Android?
import com.android.internal.telephony.IccSmsInterfaceManager;
import com.android.internal.telephony.Phone;
import com.android.internal.telephony.PhoneFactory;
import com.android.internal.telephony.SMSDispatcher;
When I import this, I got errors like these:
The import com.android.internal.telephony cannot be resolved
The import com.android.internal.telephony cannot be resolved
The import com.android.internal.telephony cannot be resolved
The import com.android.internal.telephony cannot be resolved
Later in the code there are:
Phone phone = PhoneFactory.getDefaultPhone();
With the error:
Multiple markers at this line
- Phone cannot be resolved to a type
- PhoneFactory cannot be resolved
And so on...
I tried to fix it with the https://stackoverflow.com/a/16377968/3203914
but I did not work for me.
Can please someone tell me how to fix it?
Thanks!
How can I use this imports in Android?
Those are not part of the Android SDK. If you are editing the Android source code, the build process for it should resolve those imports. If you are trying to write an Android app, you cannot directly reference them. In fact, com.android suggests they are part of a separate app, not yours and not the Android framework.
CommonsWare is correct, its not in the SDK so you cannot directly reference them. You will either have to
Import all of the android source code, which will resolve these issues
Import the specific project containing this code, then set up your code as a dependency
Stop using those packages
I am trying to create a MonkeyRunner program in Java using Eclipse but :
import com.android.monkeyrunner.adb.AdbBackend;
import com.android.monkeyrunner.core.IMonkeyDevice;
import com.android.monkeyrunner.core.TouchPressType;
cannot be found.
Can someone point me a tutorial to import those files/jars in Eclipse?
Thanks
I guess, though it's not very clear in your question, that your intention is to use monkey from Java, in that case you can follow the steps described in http://dtmilano.blogspot.com/2011/11/android-using-monkey-from-java.html
I am trying to import a package from one project in eclipse to another.
Both projects are found in the same eclipse workarea.
The problem is I cannot seem to be able to import any package (activity in a package).
I browsed through a lot of threads here but could not find an answer.
Should I somehow register these packages before they could be imported?
Thank you.
Avi
Update: Adding the project to the java build path did the trick.
Thanks again.
Avi
In the project that you are importing into, make sure to set the Java Build Path to include the project that you are importing from.
Also, you can import all of the classes in a package if you do something like
import com.company.example.*
Edited:
Include the package in your build path. If you want to import a specific class just say:
packgeImportedFrom.className;
I am working on project a in which i have to sync my program with google Calendar using Android application.
for that i am using eclipse and i got some code online but i dont know wht .jar file i need to add for support below importss..
import com.google.Android.gdata.client.AndroidXmlParserFactory;
import com.google.Android.gdata.client.JakartaGDataClient;
import com.google.wireless.gdata.calendar.client.CalendarClient;
import com.google.wireless.gdata.calendar.data.EventEntry;
import com.google.wireless.gdata.calendar.data.When;
import com.google.wireless.gdata.calendar.parser.xml.XmlCalendarGDataParserFactory;
import com.google.wireless.gdata.client.QueryParams;
import com.google.wireless.gdata.data.Feed;
import com.google.wireless.gdata.parser.GDataParser;
please can anybody help me regarding this ..
or any other clue for my project because i got a deadline on next week ..
thank you very much in advance..
i'll really appreciate.
com.google.android.gdata and com.google.wireless are not part of the public SDK so you won't be able to use them.
I haven't tried to use the gdata-java-client library on android yet, but you should see if you can download it and include it in your project and see if you can compile and run it on android.
http://code.google.com/p/gdata-java-client/