Skip to content

Commit

Permalink
release 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongshan committed Feb 8, 2023
1 parent 571116d commit 0664262
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![license](http://img.shields.io/badge/license-BSD3-brightgreen.svg?style=flat)](https://github.com/Tencent/VasDolly/blob/master/LICENSE)
[![Release Version](https://img.shields.io/badge/release-3.0.5-red.svg)](https://github.com/Tencent/VasDolly/releases)
[![Release Version](https://img.shields.io/badge/release-3.0.6-red.svg)](https://github.com/Tencent/VasDolly/releases)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Tencent/VasDolly/pulls)
[![wiki](https://img.shields.io/badge/Wiki-open-brightgreen.svg)](https://github.com/Tencent/VasDolly/wiki)
---
Expand Down Expand Up @@ -33,7 +33,7 @@ signingConfigs {
``` groovy
dependencies {
classpath 'com.android.tools.build:gradle:7.0.3'
classpath 'com.tencent.vasdolly:plugin:3.0.5'
classpath 'com.tencent.vasdolly:plugin:3.0.6'
}
```
## 引用VasDolly Plugin
Expand All @@ -45,7 +45,7 @@ apply plugin: 'com.tencent.vasdolly'
在主App工程的`build.gradle`中,添加读取渠道信息的helper类库依赖:
``` groovy
dependencies {
   api 'com.tencent.vasdolly:helper:3.0.5'
   api 'com.tencent.vasdolly:helper:3.0.6'
}
```
## 配置渠道列表
Expand Down Expand Up @@ -135,7 +135,7 @@ String channel = ChannelReaderUtil.getChannel(getApplicationContext());
具体原理可参考[VasDolly实现原理](https://github.com/Tencent/VasDolly/wiki/VasDolly%E5%AE%9E%E7%8E%B0%E5%8E%9F%E7%90%86)

# 问题反馈
遇到任何问题或者有好的建议,欢迎提[issues](https://github.com/Tencent/VasDolly/issues),或者QQ(1031747903)联系。
遇到任何问题或者有好的建议,欢迎提[issues](https://github.com/Tencent/VasDolly/issues)

# TODO

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
google()
}
dependencies {
classpath "com.tencent.vasdolly:plugin:3.0.5"
classpath "com.tencent.vasdolly:plugin:3.0.6"
}
}

Expand All @@ -31,7 +31,7 @@ android {
keyPassword "123456"
enableV1Signing true
enableV2Signing true
enableV3Signing true
enableV3Signing false
}

debug {
Expand All @@ -40,7 +40,7 @@ android {
keyAlias "leon"
keyPassword "123456"
enableV1Signing true
enableV2Signing false
enableV2Signing true
}
}

Expand Down Expand Up @@ -97,5 +97,5 @@ dependencies {

api 'androidx.appcompat:appcompat:1.4.0'
//api:同老版本compile作用一样,即本module将会向外暴露其依赖的module变化,即若'helper'库发生了改变,那么本module以及所有依赖于本module的module都要重新编译
api "com.tencent.vasdolly:helper:3.0.5"
api "com.tencent.vasdolly:helper:3.0.6"
}
Binary file modified command/jar/VasDolly.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion command/src/main/java/com/tencent/vasdolly/command/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ public static void main(String[] args) {
if (command1.equals(cmdSignMode)) { //获取签名方式
System.out.print("\n\nsignature mode:" + Util.getSignMode(file));
} else if (command1.equals(cmdChannel)) {//获取渠道信息
System.out.print("\n\nChannel: " + Util.readChannel(file));
String channel = Util.readChannel(file);
System.out.print("\n\nChannel: " + channel + ",len=" + channel.length());
} else {
System.out.print("\n\nPlease enter the correct command!");
}
Expand Down

0 comments on commit 0664262

Please sign in to comment.