1

我正在为 Urban Airship 创建一个 ANE,这是一项发送推送通知(除其他外)的服务。到目前为止,集成效果很好,但仅在应用程序打开时。当应用程序退出时,接收新的推送通知会导致应用程序崩溃:

11-29 01:19:32.448 22340-22340/air.com.example.app E/Urban Airship Autopilot: Unable to takeOff automatically
11-29 01:19:32.496 22340-22440/air.com.example.app E/AndroidRuntime: FATAL EXCEPTION: IntentService[PushService]
                                                                                  Process: air.com.example.app, PID: 22340
                                                                                  java.lang.IllegalStateException: Take off must be called before shared()
                                                                                      at com.urbanairship.UAirship.shared(UAirship.java:147)
                                                                                      at com.urbanairship.BaseIntentService.onHandleIntent(BaseIntentService.java:94)
                                                                                      at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java)
                                                                                      at android.os.Handler.dispatchMessage(Handler.java)
                                                                                      at android.os.Looper.loop(Looper.java)
                                                                                      at android.os.HandlerThread.run(HandlerThread.java)

通过大量挖掘,我认为问题在于我从 TakeoffFunction(我的 ANE 中的一个 FREFunction)中调用 UAirship.takeOff(),而不是从应用程序的主要 onCreate 方法调用它(如在以下内容中看到的问题:UrbanAirship NPE )

这是我的起飞函数:

public class TakeoffFunction implements FREFunction
{
    @Override
    public FREObject call(FREContext context, FREObject[] freObjects)
    {
         Log.d("TakeoffFunction", "Attempting Urban Airship TAKEOFF");

        Application app = context.getActivity().getApplication();

        Log.d("TakeoffFunction", "app found: " + app);

        AirshipConfigOptions options = new AirshipConfigOptions();
        options.developmentAppKey = "xxx";
        options.developmentAppSecret = "xxx";
        options.inProduction = false;
        options.gcmSender = "000";


        Log.d("TakeoffFunction", "Prepare to Launch...");
        UAirship.takeOff(app, options, new UAirship.OnReadyCallback()
        {
            @Override
            public void onAirshipReady(UAirship uAirship)
            {
                Log.d("TakeoffFunction", "Urban Airship is ready after takeoff");
                uAirship.getPushManager().setUserNotificationsEnabled(true);
                Log.d("TakeoffFunction", "User notifications have been enabled");
            }
        });
        return null;
    }
}

因此,似乎我需要以某种方式从主应用程序的 onCreate 方法调用 UAirship.takeOff() 。然而,这被证明是一个挑战,因为我知道对于 Adob​​e AIR,有一个 AppEntry 类作为主要的应用程序类,但据我所知,这个类被禁止对开发人员进行修改。我发现这个教程: http: //blogs.adobe.com/digitalmedia/2011/05/extending-air-for-android/早在 2011 年正式支持原生扩展之前。在那里我看到他们能够覆盖和扩展 onCreate() 方法,但我不知道如何使用这个原生扩展做同样的事情。

我想知道是否可以扩展 AppEntry 的 onCreate 方法或将 AIR 完全指向不同的 AppEntry 类,覆盖原来的。

4

1 回答 1

1

通常看到库希望应用程序在创建所有服务、接收器或活动之前调用它在应用程序的 onCreate 中初始化其模块。基本上是所有应用程序的唯一真正入口点。

对于像 Adob​​e 这样难以在应用程序文件中调用起飞的框架,我们添加了另一种使用Autopilot调用起飞的方式。

例子:

public class AirAutopilot extends Autopilot {
    @Override
    public AirshipConfigOptions createAirshipConfigOptions(Context context) {
        AirshipConfigOptions options = new AirshipConfigOptions();
        options.developmentAppKey = "xxx";
        options.developmentAppSecret = "xxx";
        options.inProduction = false;
        options.gcmSender = "000";

        return options;
    }

    @Override
    public void onAirshipReady(UAirship airship) {
        Log.d("TakeoffFunction", "Urban Airship is ready after takeoff");
        airship.getPushManager().setUserNotificationsEnabled(true);
        Log.d("TakeoffFunction", "User notifications have been enabled");
    }
}

然后将 autopilot 类添加到应用程序块中的清单中(不确定 Adob​​e Air 这样做的方式):

<meta-data android:name="com.urbanairship.autopilot" android:value="com.example.AirAutopilot" />

然后在您的插件中,确保在访问 UAirship 实例之前调用了自动驾驶仪:

Autopilot.automaticTakeOff(context.getActivity().getApplication());
于 2015-11-30T20:14:35.240 回答