I am integrating Zoom SDK in my Android project and I am facing an issue regarding custom invitation method. Actually, I tried a custom invitation mode in demo app and it is working fine but when I am trying to do the same in my existing project then its not working. I cannot see custom invitation method in existing project. I have changed package name in manifest folder and added code in config file. Please guide.
Manifest code:-
<activity android:name="com.geniusstudent.smp.otherfeatures.MyInviteActivity"
.........
<intent-filter>
<action android:name="com.geniusstudent.smp.intent.action.MeetingInvite" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Config code:-
<bool name="zm_config_invite_by_only_action_meeting_invite">false</bool>
<string name="zm_config_conf_activity">com.geniusstudent.smp.inmeetingfunction.zoommeetingui.CustomZoomUIActivity</string>