move backup string to resource

This commit is contained in:
Neeraj Gupta 2021-09-22 11:25:06 +05:30
parent 1bae7fdded
commit e5b1d8881c
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1
2 changed files with 5 additions and 4 deletions

View file

@ -20,25 +20,25 @@
</intent-filter> </intent-filter>
<!--Filter to support sharing images into our app--> <!--Filter to support sharing images into our app-->
<intent-filter android:label="backup"> <intent-filter android:label="@string/backup">
<action android:name="android.intent.action.SEND" /> <action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" /> <data android:mimeType="image/*" />
</intent-filter> </intent-filter>
<intent-filter android:label="backup"> <intent-filter android:label="@string/backup">
<action android:name="android.intent.action.SEND_MULTIPLE" /> <action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" /> <data android:mimeType="image/*" />
</intent-filter> </intent-filter>
<intent-filter android:label="backup"> <intent-filter android:label="@string/backup">
<action android:name="android.intent.action.SEND" /> <action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" /> <data android:mimeType="video/*" />
</intent-filter> </intent-filter>
<intent-filter android:label="backup"> <intent-filter android:label="@string/backup">
<action android:name="android.intent.action.SEND_MULTIPLE" /> <action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="video/*" /> <data android:mimeType="video/*" />

View file

@ -1,3 +1,4 @@
<resources> <resources>
<string name="app_name">ente</string> <string name="app_name">ente</string>
<string name="backup">backup</string>
</resources> </resources>