当前位置 : 主页 > 编程语言 > c++ >

Bugly的第一个大坑 加入混淆,不能生成mapping文件,百度说要打开混淆,于是打

来源:互联网 收集:自由互联 发布时间:2021-06-30
报错信息Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease'. java.io.IOException: 原因:签名的问题,还是去老老实实Demo也配个签名吧, 我是直接用了我们项目的签名,反
报错信息Error:Execution failed for task ':app:transformClassesAndResourcesWithProguardForRelease'. > java.io.IOException:
原因:签名的问题,还是去老老实实Demo也配个签名吧, 我是直接用了我们项目的签名,反正能进行下一步再说 
//配置keystore签名,具体怎么配置签名密码什么的自己百度...
    signingConfigs {
        release {
            storeFile file("xxxxxxxxStore")
            storePassword "xxxxxxxx"
            keyAlias "timehut team"
            keyPassword "xxxxxxxx"
        }
    }
    }
    buildTypes {
        release {
            minifyEnabled true
            signingConfig signingConfigs.release
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
网友评论