Carlos Hwang

Results 10 issues of Carlos Hwang

支持空事件。 修正test里sticky event的一个测试错误。

我从各个版本上去编译都是失败,估计是GCC版本太高了,而且有些不兼容。主要是编译 7.0 的ollvm 版本。 ``` https://github.com/amimo/goron.git https://github.com/heroims/obfuscator ``` 想问下是否有7.0的版本,直接下载使用。 感谢各位大佬!

I read your post: > It is worth re-iterating what ContextCompat does for us here. The checkSelfPermission() method will always return PackageManger.PERMISSION_GRANTED when running on pre-Marshmallow devices which do not...

I found a XposedDetector from vvb2060, and test in: Device : OPPO R9s, Android 6.1, API 23 , Build Number R9s_11_A.11_170160 Others: Xposed 89, DataFilter 1.5, Xposed Detector 1.1 Here...

I have used so many test suit for api testing, but still can't find one way for protobuf +socket. so maybe can add this feature?

blocked

I love this repo, and do you consider to support GitLab soon? [Webhooks · Integrations · Project · User · Help · GitLab](https://gitlab.com/help/user/project/integrations/webhooks)

#### 问题详细描述 Detailed description of the problem 加载有`aar`库的插件时,无法正确加载`so`库的引用,如果换成其他的`jar`之类的包含`so`库的则可以。 #### 复现问题步骤 Steps to reproduce the problem 1. 编译MainPlugin,并将`apk`放到`app/src/main/assets/plugin/`目录 2. 编译`TestHost`,并运行 #### 其它重要信息 Other important information replugin-host-lib/gradle Version: 2.3.1 rePlugin-plugin-lib/gradle Version: 2.3.1...

在debug模式下会有: 1. 安装找不到安装包 2. 也会执行打包操作 修改`MultiChannelPlugin`的`apply`方法,过滤`debug`运行任务并取消删除原始`apk`文件: ``` variants.all { variant -> def runTasks = project.gradle.startParameter.taskNames if (!('assemble' in runTasks || 'assembleRelease' in runTasks || 'aR' in runTasks)) { return }...

目前里面是使用zip文件来遍历,找到channel文件,为什么不直接打开当前的assets文件呢?而且目前是读取最后一行,酱紫如果多一行换行,那会错误吧? ``` public static String getChannel(Context context, String preferenceName) { String channelName = PreferenceManager.getDefaultSharedPreferences(context).getString(preferenceName, ""); if (!TextUtils.isEmpty(channelName)) { return channelName; } InputStream channelInputStream = null; try { channelInputStream = context.getAssets().open("channel_info");...