<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.genesyschat" >

    <uses-sdk
        android:minSdkVersion="29"
        android:targetSdkVersion="34" />

    <application>
        <activity
            android:name="com.genesyschat.GenesysChatActivity"
            android:exported="true" >
            <intent-filter>
                <action android:name="com.intent.action.Messenger_CHAT" />

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

</manifest>