1

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

当从 Jni 调用或 Java onCreate 初始化中调用诸如 openLaderBoards 或 openAchievements 之类的 UI 仪表板函数时,应用程序将崩溃。

编辑:我已经测试过,我尝试的任何活动更改都会发生这种情况,甚至是我自己的新课程。

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);
}

处理程序 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

4

1 回答 1

2

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

尽管答案很容易修复并且是针对特定项目的,但我还是会就让我找到它的原因给出一些建议。请记住,我所有的工具都是 windows 和 cygwin。

首先,让 Eclipse 在 clean 上为您执行 ndk-builds。

右键单击您的项目-> 属性-> C/C++ 构建。生成器设置选项卡,命令

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

其次,设置你的调试器。

使用本教程。到达那里可能需要一些时间和尝试,但这是值得的。我的 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 输出整个堆栈跟踪的类和行。

你会得到很长的堆栈跟踪,就像我的问题中的那个一样。要检查堆栈跟踪错误指向的位置,请遵循此其他教程。我访问图书馆的脚本是

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
于 2012-04-26T10:57:23.830 回答