shwenzhang / AndResGuard

proguard resource for Android by wechat team
Apache License 2.0
8.54k stars 1.54k forks source link

可以把签名前后的方法暴露出来么,见描述 #56

Closed godzillanono closed 8 years ago

godzillanono commented 8 years ago

public void buildApk(HashMap<String, Integer> compressData) throws IOException,InterruptedException { insureFileName(); generalUnsignApk(compressData); signApk(); // 这一步由我们自己来签名,前后的方法暴露出来 use7zApk(compressData); alignApk(); }

simpleton commented 8 years ago

@godzillanono 没有很理解你的意图,‘AndResGuard’ 会读

signingConfigs {
        release {
            storeFile file(".xxx")
            storePassword "xxx"
            keyAlias "xxx"
            keyPassword "xxx"
        }
}

里的签名信息并签名。

godzillanono commented 8 years ago

@simpleton 就是我也拿不到签名信息,我只能提供签名后的apk

godzillanono commented 8 years ago

@simpleton 估计这样的需求比较特殊。。。我自己改改源代码吧,还是非常感谢分享!

simpleton commented 8 years ago

欢迎Pull Request