Flutter: Can't Find String.xml file

3.1k views Asked by At

I want to use flutter_share_me 0.9.1 Plug-In. but I can't find String.xml file in my project Folder

enter image description here folder.

1

There are 1 answers

2
Sachin Bhankhar On BEST ANSWER

Create strings.xml under res/values Directory and add this code to it.

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Replace "343254889799245" with your Facebook App ID here. -->
    <string name="facebook_app_id">343254889799245</string>
</resources>

Hope this will help you.