Android独立应用程序中未创建Expo推送令牌。
创始人
2024-10-07 15:03:23
0

在Expo中,推送令牌是用于向设备发送推送通知的重要标识符。在Android独立应用程序中,Expo推送令牌可能没有被正确创建,导致推送通知无法正常工作。

以下是在Android独立应用程序中创建Expo推送令牌的示例代码:

  1. 在app/build.gradle文件中添加以下依赖项:
implementation 'com.google.android.gms:play-services-gcm:12.0.1'
implementation 'com.google.firebase:firebase-messaging:12.0.1'
  1. 创建PushNotification.java类,并添加以下代码:
import android.content.Context;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GoogleApiAvailability;
import com.google.android.gms.common.GooglePlayServicesUtil;

import io.expo.client.BuildConfig;
import io.expo.client.ExpoAndroidNotificationsDelegate;
import io.expo.client.ExponentManifest;
import io.expo.client.kernel.KernelConstants;
import versioned.host.exp.exponent.Constants;
import versioned.host.exp.exponent.ExponentApplication;

public class PushNotification {
  public static void register(Context context) {
    if (!ExpoAndroidNotificationsDelegate.isInitialized()) {
      ExponentApplication application = (ExponentApplication) context.getApplicationContext();
      ExponentManifest manifest = application.getManifest();
      String experienceId = manifest.optString(ExponentManifest.MANIFEST_ID_KEY);

      if (experienceId != null && experienceId.length() > 0) {
        if (GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(context) == ConnectionResult.SUCCESS) {
          ExpoAndroidNotificationsDelegate.init(application, experienceId, manifest);
        } else {
          // Handle error
        }
      } else {
        // Handle error
      }
    }
  }

  public static void unregister(Context context) {
    if (ExpoAndroidNotificationsDelegate.isInitialized()) {
      ExpoAndroidNotificationsDelegate delegate = ExpoAndroidNotificationsDelegate.getInstance();

      if (delegate != null) {
        delegate.stop();

        ExpoAndroidNotificationsDelegate.unpinDeviceToken(context);
        ExpoAndroidNotificationsDelegate.release();

相关内容

热门资讯

Android Recycle... 要在Android RecyclerView中实现滑动卡片效果,可以按照以下步骤进行操作:首先,在项...
安装apache-beam==... 出现此错误可能是因为用户的Python版本太低,而apache-beam==2.34.0需要更高的P...
Android - 无法确定任... 这个错误通常发生在Android项目中,表示编译Debug版本的Java代码时出现了依赖关系问题。下...
Android - NDK 预... 在Android NDK的构建过程中,LOCAL_SRC_FILES只能包含一个项目。如果需要在ND...
Alertmanager在pr... 首先,在Prometheus配置文件中,确保Alertmanager URL已正确配置。例如:ale...
Akka生成Actor问题 在Akka框架中,可以使用ActorSystem对象生成Actor。但是,当我们在Actor类中尝试...
Agora-RTC-React... 出现这个错误原因是因为在 React 组件中使用,import AgoraRTC from “ago...
Aksnginxdomainb... 在AKS集群中,可以使用Nginx代理服务器实现根据域名进行路由。以下是具体步骤:部署Nginx i...
Alertmanager中的基... Alertmanager中可以使用repeat_interval选项指定在一个告警重复发送前必须等待...
AddSingleton在.N... 在C#中创建Singleton对象通常是通过私有构造函数和静态属性来实现,例如:public cla...