i have developed one android project,(it has some resource files,and jni part ,and also containing some external .so file) which i want to use in another android applications,
if i make a project as a library project i cant use the resource files in another project,so that i export my project as jar,in that jar containing all following folders
assets
bin
com/package containing all classes
libs/
can you please help me in may android project.. im having a problem with my database.
I am trying to add a background to my android project.
I'm just developing an android project that scans for bar code and fill the barcode number to text field.
I'm just asking to know the exact way to define a button in android application to send this number inserted to the text. The android application will send the data to a java server using the HTTP connection.
I am debugging an application with target android-17 (min version android-11).
The emulator I use has android 4.0.4, which is android-14 or android-15.
When I trace into android source methods, the debugger takes me to the android-17 source which is not the same as android-14 source code, so I end up following wrong code.
I have programmed android applications before, I am using updated SDK and Eclipse Version: 3.7.2 and have set the path of SDK in Eclipse preferences.When I run a hello world application by following official Android Dev website, I get the following error.
https://www.dropbox.com/s/7635ccv490un3ig/EClipse_error.PNG
(Unable to post image because repuation is below 10, I kept a dropbox link to erro
I have finished my android application and exported it as apk file. my project contain reference to another project in my workspace.
when I run the application installed from apk the application crashed at the moment when the other project called, although when I run the project from eclipse its worked correctly.
no problems in proguard during export process.
I have a large and old workspace with linked projects. But these projects were implemented for targetSdkVersion=8 and now I need to increase to targetSdkVersion=15.
The problem occurs when I change to targetSdkVersion=15 in baseManifest.xml and try building with ant, the project is still built for targetSdkVersion=8.
I have some code in C++ which used Tesseract (desktop application). I want to use this code in my android app. So I have put these C++ source code to JNI folder and configured Android.mk file based on the NDK example but I have trouble with build this project.