更改为新活动时Android Native崩溃

时间:2012-04-25 11:36:48

标签: android android-ndk openfeint cocos2d-x

我的应用程序无法打开OpenFeint仪表板方法。本机c ++库的实现使用cocos2d-x作为图形库,但它有一个处理程序和一个包装器,允许使用OpenFeint函数。 OpenFeint初始化和非活动方法正常工作。

当从Jni调用或Java onCreate初始化调用UI仪表板函数(如openLaderBoards或openAchievements)时,应用程序崩溃。

编辑:我已经测试过,它发生在我尝试的任何活动更改中,甚至是我自己的新课程。

EDIT2:我在类似的问题上获得了+100的赏金,任何想出答案的人都会得到它。

代码

的活动:

public class App extends Cocos2dxActivity{
private Cocos2dxGLSurfaceView mGLView;

OpenFeintX m_kOpenFeintX;

protected void onCreate(Bundle savedInstanceState){
    super.onCreate(savedInstanceState);

    // get the packageName,it's used to set the resource path
    String packageName = getApplication().getPackageName();
    super.setPackageName(packageName);

    InternetConnection.setM_kActivity(this);

    m_kOpenFeintX = new OpenFeintX( this);      

    setContentView(R.layout.applayout);
    mGLView = (Cocos2dxGLSurfaceView) findViewById(R.id.game_gl_surfaceview);
    mGLView.setTextField((EditText)findViewById(R.id.textField));                  

// Testspace for new Activities, OpenFeint or self-made
//
// Intent myIntent = new Intent(this, TestActivity.class);
// startActivityForResult(myIntent, 0);
// Dashboard.open();


// Cocos2d-x scene opens after this

}

 static {
     System.loadLibrary("TestProject");
     // Native library loaded for cocos2d-x
 }

打包机:

public class OpenFeintX {

private static OpenFeintXHandler ms_kOpenFeintHandler;

public OpenFeintX(Activity kActivity) {
    initializeOpenFeint("TestApp", "derp",
            "hurr", "6546516516541",
            kActivity, ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

    ms_kOpenFeintHandler = new OpenFeintXHandler();

}

public static void openLeaderBoards() {     
    Message msg = new Message();
    msg.what = OpenFeintXHandler.SHOW_LEADERBOARDS;
    ms_kOpenFeintHandler.sendMessage(msg);
}

Handler openDashboard功能:

private void openLeaderBoards() {
    System.out.println("Opening Dashboard");
    Dashboard.openLeaderboards();
}

清单:

<application
    android:debuggable="true"
    android:label="@string/app_name">
    <activity
        android:configChanges="orientation"
        android:label="@string/app_name"
        android:name=".App"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>        

    <activity android:name="com.openfeint.internal.ui.IntroFlow"
              android:label=".IntroFlow"
              android:configChanges="orientation|keyboardHidden"
              android:theme="@style/OFNestedWindow" />
    <activity android:name="com.openfeint.api.ui.Dashboard"
              android:label=".Dashboard"
              android:configChanges="orientation|keyboardHidden"
              android:theme="@style/OFNestedWindow"/>
    <activity android:name="com.openfeint.internal.ui.Settings"
              android:label=".Settings"
              android:configChanges="orientation|keyboardHidden"
              android:theme="@style/OFNestedWindow"/>
    <activity android:name="com.openfeint.internal.ui.NativeBrowser"
              android:label=".NativeBrowser"
              android:configChanges="orientation|keyboardHidden"
              android:theme="@style/OFNestedWindow"/>
</application>

Stacktrace(不会在SO中缩进):

http://pastebin.com/jsmSbgw4

1 个答案:

答案 0 :(得分:2)

答案很简单但很复杂。当应用程序更改为新活动时,将调用cocos2d-x MessageJNI中的nativeOnPause方法。这个方法应该调用CCApplication :: sharedApplication(),但我的一个类之前调用​​了CCApplication析构函数,它将共享单例清除为null。

尽管答案很容易修复和具体项目,但我会就是什么让我找到它给出一些建议。请记住,我的所有工具都是windows和cygwin。

首先,让Eclipse在干净的时候为你做ndk-builds。

右击您的项目 - &gt;属性 - &gt; C / C ++ Build。 “构建器设置”选项卡,命令

  C:\NVPACK\cygwin\bin\bash.exe -c "cd /cygdrive/path/to/project && ./build_script.sh"

其次,设置调试器。

使用this tutorial。可能需要一些时间并尝试到达那里,但这是值得的。我的adb-server调用脚本是

export ANDROID_NDK_ROOT=/cygdrive/c/NVPACK/android-ndk-r6b/
cd $ANDROID_NDK_ROOT
./ndk-gdb-eclipse --adb=/cygdrive/c/NVPACK/android-sdk-windows/platform-tools/adb     --project=/cygdrive/c/project/path --force --verbose

第三,将logcat设置为详细。

更新:现在可以跳过最后一步,因为最新版本的Logcat输出整个堆栈跟踪的类和行。

你会得到像我问题中那样的长堆栈跟踪。要检查堆栈跟踪错误指向的位置,请执行以下other tutorial.我的脚本访问库

C:\NVPACK\android-ndk-r6b\toolchains\x86-4.4.3\prebuilt\windows\bin\i686-android-linux-addr2line.exe -C -f -e c:\path\to\project\libMyLib.so