I am getting a peculiar error while building my helloandroid project.
The deatails of development environemt that i am using.
Eclipse - helios Android ndk - android-ndk-r7 Android sdk - android-sdk_r11-windows
My NativeLib.java file
package com.vinayak;
public class NativeLib {
static
{
System.loadLibrary("NativeLib");
}
/**
* Returns Hello World string
*/
public native String hello();
}
My com_vinayak_NativeLib.h file
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_vinayak_NativeLib */
#ifndef _Included_com_vinayak_NativeLib
#define _Included_com_vinayak_NativeLib
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: com_vinayak_NativeLib
* Method: hello
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_com_vinayak_NativeLib_hello
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif
NativeLib.c file
#include "com_vinayak_NativeLib.h"
JNIEXPORT jstring JNICALL Java_com_vinayak_NativeLib_hello
(JNIEnv * env, jobject obj)
{
return (*env)->NewStringUTF(env,"Hi this is a test");
}
Android.mk file
LOCAL_PATH := $(call my-dir)
include$(CLEAR_VARS)
LOCAL_MODULE := NativeLib
LOCAL_SRC_FILE := NativeLib.c
include$(BUILD_SHARED_LIBRARY)
The following paths are there in my PATH variable
;E:\Android\android-ndk-r7\;E:\Android\android-ndk-r7\prebuilt\windows\bin\;E:\Android\android-sdk\;E:\Android\android-sdk\tools;E:\Android\android-sdk\platform-tools\
now I have tried doing ndk-build of my project in both ways
1) In Console Went to
E:\Android\WorkSpace\HelloAndroid\jni>E:\Android\android-ndk-r7\ndk-build.cmd
the output is
make: Nothing to be done for `all'.
2) In External Tools Configurations, I created a ndk_build_config with location set to
E:\Android\android-ndk-r7\ndk-build.cmd
and Working Directory as
${workspace_loc:/HelloAndroid}
and again the output is
make: Nothing to be done for `all'.
Where am I going wrong here...?
Earlier I had executed the same project successfully, but when I installed Sequoyah, it started giving some problem while doing ndk-build, so i just uninstalled it, then this problem started. After then the whole eclipse I have replaced with new one and created the project from scratch, updated the PATH variable but still same error is appearing... huhhh...
I searched other threads with the same error but in different consequences, but that cannot suggest me how to overcome this problem in ndk-build scenario...
please help me...
include$(CLEAR_VARS)there needs a space betweenincludeand$(CLEARS_VAR)asinclude $(CLEAR_VARS)This is also the solution for may of the bugs which relate to..\jni\Android.mk:3 Separate....– Khavasi Mar 15 '12 at 9:27