/images/avatar.png

js生成hash值

记录一个js生成hash值的代码段 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

javassist使用笔记

简介 Javassist是用于处理Java字节码的类库。 Java字节码存储在称为类文件的二进制文件中。每个类文件包含一个Java类或接口。 知识

Git常用操作整理

更多分享:www.catbron.cn 查看远程分支 git branch -a 查看本地分支 git branch 创建分支 git branch 分支名称 删除分支 git branch -d 分支名称 checkout远程分支到

Android开发-多渠道处理修改aar输出目录和名称

更多分享:www.catbro.cn libraryVariants.all { variant -> if (variant.buildType.name == "debug") { variant.getPackageLibrary().destinationDir = new File(project.rootDir.absolutePath + "/xxx") } if (variant.buildType.name == 'debug') { variant.outputs.all { output -> def outputFile = output.outputFile if (outputFile != null && outputFile.name.endsWith('debug.aar')) { outputFileName = "${project.name}-${variant.flavorName}-${variant.buildType.name}.aar" } } } }