Last active
February 20, 2022 22:29
-
-
Save Morfly/791310c35142b0a2aca2a93266678c17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.morfly.bfa; | |
import android.content.Context; | |
public class MyFeatureWithRes { | |
public String getInfo(Context context) { | |
return context.getString(R.string.my_feature_info); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="my_feature_info">🥞 My feature with resources</string> | |
</resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment