The software hurdles, blockers and bugs that I come across at workplace and don't want to solve all over again next time if and ever I face them.
Wednesday, December 15, 2010
Wednesday, December 8, 2010
KWAAK
http://code.google.com/p/kwaak3/
Someone says there's lot of cool code inside it. Will post more when I check it out.
Someone says there's lot of cool code inside it. Will post more when I check it out.
JNI calling java code from C++
http://groups.google.com/group/android-ndk/browse_thread/thread/96077556a5434005
http://groups.google.com/group/android-ndk/browse_thread/thread/96077556a5434005/80c242fb2bdc1f05/80c242fb2bdc1f05?pli=1
Method Signature:
http://journals.ecs.soton.ac.uk/java/tutorial/native1.1/implementing/method.html
Other resources:
http://download.oracle.com/javase/6/docs/technotes/guides/jni/spec/functions.html#wp16660
http://www.public.iastate.edu/~java/docs/guide/nativemethod/functions.doc.html#16656
http://groups.google.com/group/android-ndk/browse_thread/thread/96077556a5434005/80c242fb2bdc1f05/80c242fb2bdc1f05?pli=1
Method Signature:
http://journals.ecs.soton.ac.uk/java/tutorial/native1.1/implementing/method.html
Other resources:
http://download.oracle.com/javase/6/docs/technotes/guides/jni/spec/functions.html#wp16660
http://www.public.iastate.edu/~java/docs/guide/nativemethod/functions.doc.html#16656
Tuesday, December 7, 2010
Fix android activity screen orientation
In your activity class insert code:
@Override
public void onConfigurationChanged(Configuration newConfig)
{ super.onConfigurationChanged(newConfig);
}
In your manifest activity tag, declare attribute:
android:screenOrientation="portrait"
@Override
public void onConfigurationChanged(Configuration newConfig)
{ super.onConfigurationChanged(newConfig);
}
In your manifest activity tag, declare attribute:
android:screenOrientation="portrait"
Friday, December 3, 2010
How to implement the source's relative path or absolute unix format path in subdir.mk automatically
How to implement the source's relative path or absolute unix format path in subdir.mk automatically :
eclipse subdir.mk target pattern contains no `%'. Stop.:
http://www.eclipse.org/forums/index.php?t=tree&th=164513&
eclipse subdir.mk target pattern contains no `%'. Stop.:
http://www.eclipse.org/forums/index.php?t=tree&th=164513&
Thursday, December 2, 2010
Predator sound in android
Configure AudioRecord input as stereo and AudioTrack output as mono. You will get sound as if a predator's listening.
Subscribe to:
Posts (Atom)