· Current Hobby - Learning New things!

Adding into AndroidManifest.xml

Custom Code

I want to add this piece of code into the androidmanifest.xml file , using flutterflow :

 <receiver android:name="com.shounakmulay.telephony.sms.IncomingSmsReceiver"
		    android:permission="android.permission.BROADCAST_SMS" android:exported="true">
		    <intent-filter>
			<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
		    </intent-filter>
		</receiver>

This is for a custom widget which reads incoming OTP's and populates element for verification using the 'telephony' package . The required permissions have been added through custom permissions.
Anyway to add this above piece of code through flutterflow and not by changing the source code locally or in github ??

What have you tried so far?

I have tried doing it locally , works fine. But the workflow shared by the team in flutterflow is then disturbed if i add it manually in my local setup or github. So wanted to know if there is anyway to add this in the interface itself

Did you check FlutterFlow's Documentation for this topic?
No
8
4 replies