tinker-support.gradle 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. apply plugin: 'com.tencent.bugly.tinker-support'
  2. def bakPath = file("${buildDir}/bakApk/")
  3. /**
  4. * 此处填写每次构建生成的基准包目录
  5. */
  6. def baseApkDir = "app-0208-15-10-00"
  7. /**
  8. * 对于插件各参数的详细解析请参考
  9. */
  10. tinkerSupport {
  11. // 开启tinker-support插件,默认值true
  12. enable = true
  13. // 指定归档目录,默认值当前module的子目录tinker
  14. autoBackupApkDir = "${bakPath}"
  15. // 是否启用覆盖tinkerPatch配置功能,默认值false
  16. // 开启后tinkerPatch配置不生效,即无需添加tinkerPatch
  17. overrideTinkerPatchConfiguration = true
  18. // 编译补丁包时,必需指定基线版本的apk,默认值为空
  19. // 如果为空,则表示不是进行补丁包的编译
  20. // @{link tinkerPatch.oldApk }
  21. baseApk = "${bakPath}/${baseApkDir}/app-release.apk"
  22. // 对应tinker插件applyMapping
  23. baseApkProguardMapping = "${bakPath}/${baseApkDir}/app-release-mapping.txt"
  24. // 对应tinker插件applyResourceMapping
  25. baseApkResourceMapping = "${bakPath}/${baseApkDir}/app-release-R.txt"
  26. // 构建基准包和补丁包都要指定不同的tinkerId,并且必须保证唯一性
  27. tinkerId = "base-1.0.1"
  28. // 构建多渠道补丁时使用
  29. // buildAllFlavorsDir = "${bakPath}/${baseApkDir}"
  30. // 是否启用加固模式,默认为false.(tinker-spport 1.0.7起支持)
  31. // isProtectedApp = true
  32. // 是否开启反射Application模式
  33. enableProxyApplication = false
  34. // 是否支持新增非export的Activity(注意:设置为true才能修改AndroidManifest文件)
  35. supportHotplugComponent = true
  36. }
  37. /**
  38. * 一般来说,我们无需对下面的参数做任何的修改
  39. * 对于各参数的详细介绍请参考:
  40. * https://github.com/Tencent/tinker/wiki/Tinker-%E6%8E%A5%E5%85%A5%E6%8C%87%E5%8D%97
  41. */
  42. tinkerPatch {
  43. //oldApk ="${bakPath}/${appName}/app-release.apk"
  44. ignoreWarning = false
  45. useSign = true
  46. dex {
  47. dexMode = "jar"
  48. pattern = ["classes*.dex"]
  49. loader = []
  50. }
  51. lib {
  52. pattern = ["lib/*/*.so"]
  53. }
  54. res {
  55. pattern = ["res/*", "r/*", "assets/*", "resources.arsc", "AndroidManifest.xml"]
  56. ignoreChange = []
  57. largeModSize = 100
  58. }
  59. packageConfig {
  60. }
  61. sevenZip {
  62. zipArtifact = "com.tencent.mm:SevenZip:1.1.10"
  63. // path = "/usr/local/bin/7za"
  64. }
  65. buildConfig {
  66. keepDexApply = false
  67. //tinkerId = "1.0.1-base"
  68. //applyMapping = "${bakPath}/${appName}/app-release-mapping.txt" // 可选,设置mapping文件,建议保持旧apk的proguard混淆方式
  69. //applyResourceMapping = "${bakPath}/${appName}/app-release-R.txt" // 可选,设置R.txt文件,通过旧apk文件保持ResId的分配
  70. }
  71. }