itchenning

Results 5 comments of itchenning

I have the same question on virtual device. Solution: Code: ``` setLayerType(LAYER_TYPE_SOFTWARE, null); ``` xml: ``` app:mrl_rippleRoundedCorners="26dp" app:mrl_rippleOverlay="true" ```

@gyf-dev 引用你的资源, 压缩声音到76kb, 这样应该会节省不少CPU. 网太慢了, 暂时传到我的项目下. @vomobile 可以去这里下. [无声MP3](https://github.com/itchenning/AndroidKotlin/blob/master/app/src/main/res/raw/cactus.mp3)

补充一下环境: AS:3.3.2, Build:3.2.0, compileSdkVersion: 28, OS:WIN10

出错的Alias为:MultifuncFlashlight 之后改为mfl,正常打包。

## 更正之前的Bug,之前的Alias会影响自定义apk名的长度。 ## 最近同事发现你们这个库当自定义apk名过长时签名失败。 出错的apk名长度 90位 改小长度后签名正常。 ## 自定义apk名设置方式,在主项目build.gradle中: ``` applicationVariants.all { def buildType = it.buildType.name def fileName def createTime = new Date().format("YYYY-MM-dd", TimeZone.getTimeZone("GMT+08:00")) it.outputs.each { if (buildType == "release")...