Filter strings.xml with gradle-android-plugin?

前端 未结 2 1121
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-04 22:07

How would I filter my res/values/strings.xml file?

Something like:


    ${version}
..         


        
2条回答
  •  天命终不由人
    2021-02-04 22:45

    You can use ReplaceTokens with filter method if you have your token in the following format: @token@

    So if your file looks like this:

    
       @version@
    ...
    

    then you can do:

    import org.apache.tools.ant.filters.ReplaceTokens
    
    def version = '1.0'
    
    processResources{
     filter(ReplaceTokens, tokens: ['version': version])
    }
    

    You can do this for any task that supports filter methods (which looks like any task that extends AbstractCopyTask).

    I am not sure how you do it if you want to keep the ${token} format. You might be able to use a different filter or set the filter on ReplaceTokens. Looks like in ant you could set the begin and end tokens.

提交回复
热议问题