我可以使用Firebase远程配置更新Android应用的strings.xml吗?

时间:2016-09-16 04:50:09

标签: android firebase firebase-remote-config

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

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

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

如果我们可以将strings存储在Firebase等服务器中,那就太棒了。

2 个答案:

答案 0 :(得分:2)

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

答案 1 :(得分:2)

无法动态更新strings.xml,但是对此有解决方案。当我想使用Firebase Remote Config进行A / B测试时,遇到了相同的问题。因此,我为Android创建了FString库,它提供了一个智能解决方案。目前,它在生产上为Mouve Android App供电。

安装

  • 在项目的模块中 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) 

查看库文档以获取更多信息。如果您认为答案有帮助,请将此答案标记为答案。