在 IONIC 中打开 URL 时,不会触发 appUrlOpen 事件

问题描述 投票:0回答:1

我正在尝试处理从外部服务(Laravel 后端)到我的 Ionic 应用程序的重定向 URL,但我遇到了问题。

背景:

外部 URL 示例:https://my-laravel-website.com/api/get-tap?tap_id=23

目标:

打开 URL 时,我希望我的 Ionic 应用程序能够处理它,提取必要的信息,并关闭所有打开的浏览器窗口。

我的代码:

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <activity
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
            android:name="com.tebk.app.MainActivity"
            android:label="@string/title_activity_main"
            android:theme="@style/AppTheme.NoActionBarLaunch"
            android:launchMode="singleTask"
            android:exported="true">

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="https" android:host="my-laravel-website.com" />
            </intent-filter>
        </activity>

        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths">
            </meta-data>
        </provider>
    </application>

    <!-- Permissions -->
    <uses-permission android:name="android.permission.INTERNET" />
</manifest>

信息.plist:

<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>https</string>
</array>
<key>CFBundleURLName</key>
<string>my-laravel-website.com</string>
</dict>
</array>

我的组件.ts

import { Component } from '@angular/core';
import { App } from '@capacitor/app';
constructor() {
  this.initializeApp();
}
initializeApp() {
  App.addListener('appUrlOpen', (data: any) => {
    console.log('App opened with URL:', data.url);
  });
}

strings.xml:

<?xml version='1.0' encoding='utf-8'?>
<resources>
    <string name="app_name">براعم النخبة الأهلية</string>
    <string name="title_activity_main">براعم النخبة الأهلية</string>
    <string name="package_name">com.tebk.app</string>
    <string name="custom_url_scheme">com.tebk.app</string>
</resources>

构建.gradle:

apply plugin: 'com.android.application'
android {
    namespace "com.tebk.app"
    compileSdk rootProject.ext.compileSdkVersion
    defaultConfig {
        applicationId "com.tebk.app"
         ...
     }

问题:

打开 URL 时未触发 appUrlOpen 事件

我正在我的真实设备上使用 Android Studio 测试该应用程序

任何指导或建议将不胜感激!

android-studio ionic-framework deep-linking ios-universal-links applinks
1个回答
0
投票

在 Android Studio 中:构建 -> 生成签名的应用程序包/APK 然后我在手机上安装了发布的 APK 并开始工作。

© www.soinside.com 2019 - 2024. All rights reserved.