3

众所周知,Firebase 远程配置是一项云服务,可让您更改应用的行为和外观,而无需用户下载应用更新。

我想知道我可以Firebase Remote Config用来更新strings.xml吗?

有时我需要更新文件strings.xml(例如:更正语言环境的翻译)。为此,我必须更新我的应用程序。

如果我们可以stringsFirebase.

4

2 回答 2

3

动态更新 strings.xml 是不可能的,但有一个解决方案。当我想使用 Firebase Remote Config 进行 A/B 测试时遇到了同样的问题。所以我为 android 创建了FString库,它提供了一个智能的解决方案。它目前在生产中为Mouve Android 应用程序提供支持。

安装

  • 在您项目的模块build.gradle添加此依赖项
implementation 'com.ravindrabarthwal.fstring:fstring:1.0.0'
  • 在您的 Android Application类中添加以下代码
import com.example.myapp.R.string as RString // Import your string 

class MyApp: Application() {

    override fun onCreate() {
        super.onCreate()
        FString.init(RString::class.java) // Initializes the FString
    }

}

用法

访问字符串

  // This is how you get strings without FString
  context.getString(R.string.my_app_name) // This is how you normally do

  // To get the string using FString use
  FString.getString(context, R.string.my_app_name)

  // If you prefer extension function use
  context.getFString(R.string.my_app_name) // This is how FString works ;)

更新 FString 值

  /*
   * Assume this JSON is coming from server. The JSON string 
   * must be parseable to a JSON object with key and value pairs
   */
  var jsonFromServer = """
      {
        "my_app_name": "MyApp v2.0",
        "some_other_string": "this is so cool",
      }
  """.trimIndent()

  // This will update the SharedPreference using keys from
  // above JSON and corresponding value. The SharedPreference will
  // not save any key that is not is strings.xml
  FString.update(context, jsonFromServer) 

查看库文档以获取更多信息。如果您发现答案有帮助,请投票并将其标记为答案。

于 2020-02-09T05:56:05.447 回答
3

我认为你不能通过 Firebase 做到这一点,只需要更新 apk。

于 2016-09-16T05:04:27.427 回答