Android :: JNI Run Time Error Using Same Code And Lib
Feb 23, 2009
Now, I am trying to verify the JNI in Android Java platform. I am using HTC G1 phone. I write a simple .c file to make a hello.so and a simple hello.java file to load the library. My story is like below:
1. create hellolib.c file and compiled to a hellolib.so create a folder in create a hellolib.c file hellolib.c, it really nothing just a function return;
*#include <jni.h>*
*#define .LOG_TAG "TestLib"*
*#undef LOG*
*#include <utils/Log.h>*
*JNIEXPORT void JNICALL java_com_testHelloLib_PrintHello(JNIEnv
* env, jobject jobj)*
*{* *LOGD("hello android LIB");* *}*
I compiled the hellolib.c to .so by changing the android.mk:
*LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS)*
*LOCAL_SRC_FILES := hellolib.c*
*LOCAL_C_INCLUDES := $(JNI_H_INCLUDE)*
*LOCAL_SHARED_LIBRARIES := libutils
LOCAL_PRELINK_MODULE := false*
*LOCAL_MODULE := libhello *
*include $(BUILD_SHARED_LIBRARY)
* push the libhello.so to /system/lib
2. create a .java file.
*public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
native_test.add_xx(1, 2) ;* * }* * }
View 8 Replies
Feb 1, 2010
Everytime i go to send a message it says sms error cause code 34 error class 2. i did a hard reset and it is still happening?
View 3 Replies
View Related
Jun 27, 2010
What is the easiest to time execution in Android?
I have looked around a bit and I found TimingLogger on the Android SDK, and instructions here. It looks very convenient. But I can't get it work. This is my code:
CODE:................
It's is supposed to dump the times in in LogCat. But I can't see nothing.. I What am I doing wrong? Eclipse doesn't show any varnings. I guess it has something with verbose ouput, but I have set LogCat to show Verbose.
View 3 Replies
View Related
Apr 24, 2009
I'm trying to put a timer in my code to determine the amount of time it takes to execute a block of code.
I've tried googling up some ideas, but they are all related to scheduling tasks, which is not what I want.
I want to, perhaps, place a time stamp in different parts of my code. How can I do this?
View 3 Replies
View Related
Nov 3, 2010
I have a application for listing student mark and name that is stored in raw resources ..res/raw. Can i change it from the code.
View 1 Replies
View Related
Sep 16, 2010
I am developing an application for an image gallery. I am using the share option in my application. The share option function is share image in SDcard, for example particular image I share, that image store in sdcard. When the user clicks the share button that time image will store in SDcard, images are retrieved from a url. Have any idea, anbody knows please give code for anytime can store image in sdcard.
View 1 Replies
View Related
Mar 20, 2009
Who is JPARKS and why did he break it ?
View 4 Replies
View Related
Jun 21, 2010
i am getting error that the app has stopped unexpectedly as soon as i lauch the following programme on the emulator:package com.example.TextSpeaker2;
import java.util.Locale;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.speech.tts.TextToSpeech;
import android.speech.tts.TextToSpeech.OnInitListener;
import android.widget.Button;
import android.widget.Toast;
public class TextSpeaker2 extends Activity implements OnInitListener{
public static final Uri SMS_CONTENT_URI = Uri.parse("content://sms");
public static final Uri SMS_INBOX_CONTENT_URI = Uri.withAppendedPath(SMS_CONTENT_URI, "inbox");
int MY_DATA_CHECK_CODE = 0;
public static TextToSpeech mtts;
public static String body="";
Button speak;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent myintent = new Intent();
myintent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(myintent, MY_DATA_CHECK_CODE);
getSmsDetails(this, 0, false);
}Public static void getSmsDetails(Context context, long ignoreThreadId, boolean unreadOnly) {
String SMS_READ_COLUMN = "read";
String WHERE_CONDITION = unreadOnly ? SMS_READ_COLUMN + " = 0" : null;
String SORT_ORDER = "date DESC";
int count = 0;
if (ignoreThreadId > 0) {
WHERE_CONDITION += " AND thread_id != " + ignoreThreadId;
}Cursor cursor = context.getContentResolver().query(SMS_INBOX_CONTENT_URI,
new String[] { "_id", "thread_id", "address", "person", "date", "body" }, WHERE_CONDITION, null, SORT_ORDER);
if (cursor != null) {
count = cursor.getCount();
cursor.moveToFirst();
} else {
return;
} long messageId = cursor.getLong(0);
long threadId = cursor.getLong(1);
String address = cursor.getString(2);
long contactId = cursor.getLong(3);
String contactId_string = String.valueOf(contactId);
long timestamp = cursor.getLong(4);
body = cursor.getString(5);
StringBuffer smsMessage = new StringBuffer();
smsMessage.append("MessageID: " + messageId + "/" + count + "
"); smsMessage.append("ThreadID: " + threadId + "
"); smsMessage.append("address: " + address + "
"); smsMessage.append("contactID: " + contactId + "
"); smsMessage.append("contactID_string: " + contactId_string + "
"); smsMessage.append("timestamp: " + timestamp + "
"); smsMessage.append("body: " + body + "
"); Toast.makeText(context, smsMessage.toString(), Toast.LENGTH_LONG).show();
View 2 Replies
View Related
May 19, 2009
Getting error code 5 and unable to insert the data in the database, when more than one thread are trying to populate the data in database.
I am using the following versions - android sdk1.1 and sqlite 3.0.
View 2 Replies
View Related
Oct 30, 2010
Is anyone else recently having the problem with web browsers? The problem I am having is after a recent os upgrade to my dhd I get this message
http error code: 504
gateway time-out
It was with the default brwoser then i tried with another and got the same!
I can still use other apps like Twitter and facebook though, but web browsing is impossible.
View 2 Replies
View Related
Jun 5, 2010
Do we need to launch the virtual device from eclipse every time we want to test our code? If yes, then is there any other method to make it a bit faster?
View 4 Replies
View Related
Aug 3, 2009
Does anyone have a code example of how I can time bomb an Android application so It will not work after a given date?
I would like to release a "beta" application for testing but would like to make sure it will only work while I have the application officially in beta.
View 3 Replies
View Related
Aug 25, 2009
Why I have this error? It' s the same java code than the following url:...........
View 6 Replies
View Related
Dec 24, 2009
What could be the reason, if I get such a strange error?
CODE:.................
I do not get a special line in my code. How can I find anything out, where the error in my code is?
And the LogCat says all the time:
CODE:............................
View 5 Replies
View Related
Oct 15, 2010
I'm creating a Thread and in that thread I open a database connection using the DBHelper, perform an update on a field in my database and close it. I create a separate one in the Thread because if the View is closed the global one for that view is closed, causing my Thread update to throw an error. The thread is in a View, that also has it's own instance of the DBHelper and opens the database onCreate closes it onPause opens it onResume closes it onDestroy The instance in my Thread is throwing this but not all the time :error code 5: database is locked Is there a known practice I should implement so I don't get this error?
View 9 Replies
View Related
Aug 23, 2009
I have different background threads in my application, one doing periodical database updates, another responsible for doing long searches and so. Obviously some are just reading from database while others are writing as well. Once in a while I get "database is locked" exception. I need to know the safe way of reading/writing from/to database on different threads. As well I've found "isDbLockedByCurrentThread()" and "isDbLockedByOtherThreads()" methods on SQLiteDatabase. Should I use them every time I want to access the database? What if the database is locked? Should I pause the current thread and retry a few milliseconds later?
View 5 Replies
View Related
Jul 16, 2009
I have downloaded the code successfully using "repo sync" on my linux system and now I want to buld it using make but it fails and telling that
"frameworks/policies/base/PolicyConfig.mk:22:*** No module defined for the given PRODUCT_POLICY (android.policy_phone) . stop. "
View 9 Replies
View Related
Nov 24, 2010
Can anyone tell me how to fix a code 98 error when trying to send texts?
View 1 Replies
View Related
May 27, 2010
I have followed the instructions on the Android website on how to download the latest android source code files but it gives errors when i run this command:
CODE:.....
It gives the following error:
CODE:....
On checking forums for its resolution, i was told that port 9418 was being blocked. I use Ubuntu 10.04 and ensured that the firewall wasnt blocking the port and also enabled the port and the above IP addresses. I also spoke to the networking peeps who ensured that no traffic from the internet is being blocked.
I would be glad if i could get directions on how to proceed next.
View 2 Replies
View Related
Jul 28, 2010
I want to access the build type [release/debug] in java code and xml file to enable or disable the particular feature at the run time.
Please let me know if we have any environment variable defined for it which can be accessed in java code and in xml file also.
View 3 Replies
View Related
Nov 15, 2010
I have an Android code base which uses APIs with settings to get different data for several apps. All apps use the same code base but with one or two design tweaks. So how do I re-use the main code base without having to copy the whole Android project each time?
iPhone uses multiple targets in the same project which works well. If android cant do this do I need to compile binaries of the code base in one project and then import into each new app project? If so how? I'm using Eclipse and am an intermediate Java developer.
View 2 Replies
View Related
Sep 24, 2010
I'm currently learning android and java, and I am having some issues with importing a java file.
I am working with the time and date example in the android api demos, and I want to put all the code relating to creating the time and date dialogs setting the values etc into a separate java file, and in my main java file run when the application starts, just declare the buttons and onclick events.
What is the best way to do this? Do I need to put all the code inside a class(that extends activity) or method? How do I use this inside my main class. Code...
View 1 Replies
View Related
Mar 4, 2010
Is there a method to catch HTTP error codes with a WebView? Because my goal is to capture a 401 code but nothing happen with "onReceivedError".
View 3 Replies
View Related
Jun 1, 2010
CSSParser.cpp build error in the 2.1 Source Code.
CODE:.........................Would help me to fix it.
View 3 Replies
View Related
Mar 13, 2010
I developed and published a game about two months ago. Since then, I've received several negative comments about input lag in the game. Before releasing the game, I already took several measures to hopefully prevent lag from occurring: 1) Game is almost entirely written in native code 2) After initialization, my process never invokes the GC during gameplay (no GC executions from my process show up in the log) 3) Average FPS is generally > 30 fps 4) I tested the game on both a Motorola Milestone and an HTC Magic and I don't experience any noticeable input lag (except perhaps when the GC is executed by other processes) My guess is that the lag that users are experiencing is a result of the GC being invoked by another process. Has anyone been able to address this issue? Specifically, have any game developers been able to achieve a completely lag-free game and thus avoid negative ratings that drag down your app? The only other suspicious thing I've noticed is the following lines showing up in my log any time a SoundPool clip is played: D/AudioHard wareMot ( 1054): AudioMgr:AudioStreamOutMot::standby called D/AudioHardwareMot( 1054): AudioMgr:Output 0xb538 entering standby D/AudioHardwareMot( 1054): AudioMgr:Closing stereo device D/AudioHardwareMot( 1054): AudioMgr:Output 0xb538 exiting standby
View 1 Replies
View Related
Apr 27, 2010
I wrote a basic soundboard app, and it runs fine there's nothing wrong with it. I want to upload it to the Market, but every time I try I get an error message:
Market requires the minSdkVersion to be set to a positive 32-bit integer in AndroidManifest.xml
That is already in there, I'm using 1.5 so I have my minSdkVersion set at 3. I don't understand what the problem is, and I've asked a lot of devs that never know what to tell me. I don't want to use a different platform because my phone currently uses 1.5. Others have suggested putting the <uses-sdk> line under the <manifest> line, but that hasn't helped at all.
Here is what my manifest looks like:
code:....................
View 5 Replies
View Related
Jun 4, 2010
I cant text for some reason. when i try i get sms error. cause code: 64 error class: 2
I seen the other threads but they had code 67.
View 1 Replies
View Related
Jun 4, 2010
I got my phone from RS and they set it up, everything was working great but now all of a sudden I get this Error message.
Dada Call Failure
Error Code 67. Registration failure. Your PCS Vision username and or password may be incorrect. Please try again
View 2 Replies
View Related
Apr 21, 2009
I sometimes get bug reports that are caused by an OutOfMemory error. It happens when creating a bitmap, but I am pretty sure that it is not the bitmap size that is the real problem, because the instantiation of those images happens > 100.000 times a day without an error report. Those png images are of 4K size (on disk) anyway.
Those bug reports are very infrequent, but still I would love to get rid of them. I can't reproduce the memory growing over 10 MBs (actually way less) when using the app myself and monitoring the memory consumption in DDMS. I also, at no point in time, cache something or hold on to more than one item (article in my case) at a time, except in one list. There the list caches the visible components, which cannot amount to much too and is default functionality from the Android framework.
..........................
View 3 Replies
View Related
Aug 9, 2010
Currently I am trying to compile native code for Android. The code is from the OpenCV port for Android. I pasted all the code correctly in my project and edited my make files accordingly. When I set android:debuggable to false everything works fine and I get my native library. When I try while android:debuggable is set to true I get an error.
Here is a part of the log:
CODE:....................
From what I have found on the internet this is caused by the optimization level of the compilation. As long as the code isn't compiled so that is is debuggable afterwards everything should be fine.
Now apparently it is possible to avoid this by setting APP-OPTIM := release in the Application.mk or adding -O2 to LOCAL_CFLAGS. I have tried both and still I get this error.
Right now I don't really care that much about debugging my native code, but I would like to have basic debugging enabled. And I don't want to keep switching android:debuggable in my manifest every time I want to compile. I'm not even sure if it is okay at all if I just set android:debuggable to false pre compiling and to true post compiling, but I am sure I will forget it every second run.
View 1 Replies
View Related