当前位置:   article > 正文

react-native 修改android打包的包名_react native 修改release包名称apk

react native 修改release包名称apk

默认名称:app-release.apk

要修改这个名字可以搜索一下异常:
Cannot set the value of read-only property 'outputFile'

因为你搜索react-native 修改android打包的包名搜索不到有用的~~~

项目根目录 -> android -> app -> build.gradle -> 修改buildTypes 里面的内容

buildTypes {
        release {
            signingConfig signingConfigs.release
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
            // 以下是需要添加的内容
            applicationVariants.all{ variant ->
                def buildName = variant.buildType.name
                variant.outputs.all { output -> 
                    def outputFile = output.outputFile
                    if(outputFile != null && outputFile.name.endsWith('.apk')){
                        if(buildName == 'debug'){
                            def fileName = "app-debug.apk"
                            outputFileName = fileName
                        } else if (buildName == 'release'){
                            def fileName = "ruanjian.apk" // 修改app名称
                            outputFileName = fileName
                        }
                    }
                }
            }
        }
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/134156
推荐阅读
相关标签
  

闽ICP备14008679号