Git Product home page Git Product logo

Comments (4)

BigggFish avatar BigggFish commented on August 22, 2024 1

I solved this problem by modifying CopyDependenciesTask.groovy please have a try

 def processValuesResource(String tempFolder) {
        File valuesSourceFile = new File("${tempFolder}/res/values/values.xml")
        File valuesDestFile = new File("${temporaryDir.path}/${variantName}/res/values/values.xml")

        if (valuesSourceFile.exists()) {
            if (!valuesDestFile.exists()) {
                project.copy {
                    from "${tempFolder}/res"
                    include "values/*"
                    into "${temporaryDir.path}/${variantName}/res"
                }
            } else {
                def valuesSource = new XmlSlurper().parse(valuesSourceFile)
                def valuesDest = new XmlSlurper().parse(valuesDestFile)
                valuesSource.children().each {
  
                        valuesDest.appendNode(it)
                    }
                }

                FileOutputStream fileOutputStream = new FileOutputStream(valuesDestFile, false)
                byte[] myBytes = XmlUtil.serialize(valuesDest).getBytes("UTF-8") // !!!修改了这
                fileOutputStream.write(myBytes)
                fileOutputStream.close()
            }
        }
    }

from fataar-gradle-plugin.

oscarcpozas avatar oscarcpozas commented on August 22, 2024

Hey @BigggFish, thanks for your contribution. Your solution is correct, why don't you give me a pull request?

from fataar-gradle-plugin.

oscarcpozas avatar oscarcpozas commented on August 22, 2024

#25

from fataar-gradle-plugin.

455361051 avatar 455361051 commented on August 22, 2024

this error still occur in my project

Execution failed for task ':module_sdk:copyReleaseDependencies'.

com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: 1 字节的 UTF-8 序列的字节 1 无效。

And I have used the lastest.
classpath "com.mobbeel.plugin:fat-aar:2.0.3"

Could you help me to resolve this?

from fataar-gradle-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.