Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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...

share|improve this question
I did not get any root solution for this, but when id deleted all my set and reinstalled/unzipped all my sdk, ndk and eclipse tools to another directory, and also updated the registry entry accordingly, it is working... – Khavasi Mar 5 '12 at 9:01
oops.. finally i found the root of the problem for this...:) The problem is here include$(CLEAR_VARS) there needs a space between include and $(CLEARS_VAR) as include $(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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.