我有一个.cpp文件用于android上的java:
#include<iostream>
#include<jni.h>
jint Java_com_example_gatsj_tutorjatek_MainActivity_Sum(JNIEnv* env, jobject obj)
{
return 5;
}
我在这里使用它:
package com.example.gatsj.tutorjatek;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity
{
public native int Sum();
static
{
System.loadLibrary("TestCPP");
}
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
int x = Sum();//IF I REMOVE THIS LINE THE APP DOESN'T CRASH
}
}
我使用Gradle和此CMakeLists.txt:
在Android Studio中构建它cmake_minimum_required(VERSION 3.4.1)
add_library( # Specifies the name of the library.
TestCPP
# Sets the library as a shared library.
SHARED
# Provides a relative path to your source file(s).
src/main/cpp/TestCPP.cpp )
当我在手机上启动应用程序时,它会崩溃。但是如果我删除&#34; int x = Sum();&#34;应用程序可以启动。
&#34; loadLibrary&#34;和#34;本地人&#34;方法部分仍在代码中,但没有&#34; int x = Sum();&#34;该应用程序并没有崩溃。
如何使用Sum()方法?是什么导致了这个问题?
答案 0 :(得分:3)
由于正在使用C ++而不是C,因此您应该将本机方法的定义包含在cpp文件中的extern "C"
内。
extern "C" {
// your native method definations.
}