VasDolly icon indicating copy to clipboard operation
VasDolly copied to clipboard

Android V1 and V2 Signature Channel Package Plugin

Results 34 VasDolly issues
Sort by recently updated
recently updated
newest added

能否实现个flutter插件的分支版本,有大佬实现了吗

能输出对应的apk,但是每个apk真实的渠道还是原渠道,没有起作用 请问如何解决?

现在要为不同的buildType配置不同的channle,必须在assemble之前更改channelFile的内容,无法自动化。 在gralde拓展增加文件路径配置然后在ConfigExtension中的getExtensionChannelList方法中通过路径读取文件来加载channel就能实现

我的settings.gradle.kts: pluginManagement { repositories { google { content { includeGroupByRegex("com\\.android.*") includeGroupByRegex("com\\.google.*") includeGroupByRegex("androidx.*") } } gradlePluginPortal() google() mavenCentral() maven { url = uri("https://maven.aliyun.com/repository/google") } maven { url = uri("https://maven.aliyun.com/repository/public") } maven...