Skip to content

Commit e658462

Browse files
committed
Upgrade Android SDK Version from 1.0 to 1.1.0
1 parent 72795e2 commit e658462

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Pic 1: Before Using VasSonic | Pic 2: After Using VasSonic
3838
[Getting started with PHP](https://github.com/Tencent/VasSonic/blob/master/sonic-php/README.md)
3939

4040
## Demo Downloads
41-
1. [Here](https://github.com/Tencent/VasSonic/releases/tag/1.0) are the sample demo for Android and iOS.
41+
1. [Here](https://github.com/Tencent/VasSonic/releases/tag/1.1.0) are the sample demo for Android and iOS.
4242

4343

4444
## Support

sonic-android/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Add VasSonic gradle plugin as a dependency in your module's build.gradle
1010
```gradle
11-
compile 'com.tencent.sonic:sdk:1.0.0'
11+
compile 'com.tencent.sonic:sdk:1.1.0'
1212
```
1313

1414
## Implement sonic interface:

sonic-android/docs/Sonic接入指引.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
在模块的build.gradle文件里面加入
55

66
```
7-
compile 'com.tencent.sonic:sdk:1.0.0'
7+
compile 'com.tencent.sonic:sdk:1.1.0'
88
```
99

1010
## 2.代码接入

sonic-android/sample/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ dependencies {
2626
})
2727

2828
// compile sdk from jcenter
29-
// compile 'com.tencent.sonic:sdk:1.0.0'
29+
compile 'com.tencent.sonic:sdk:1.1.0'
3030

3131
// compile sonic-sdk from local path
32-
compile project(path: ':sdk')
32+
// compile project(path: ':sdk')
3333

3434
compile 'com.android.support:appcompat-v7:25.2.0'
3535
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'

sonic-android/sdk/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
minSdkVersion 9
1212
targetSdkVersion 25
1313
versionCode 1
14-
versionName "1.0"
14+
versionName "1.1.0"
1515

1616
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1717

@@ -36,7 +36,7 @@ dependencies {
3636

3737

3838
// sdk info
39-
version = "1.0.0" // sdk version num
39+
version = "1.1.0" // sdk version num
4040
group = "com.tencent.sonic" // maven group id for the artifact
4141
def SITE_URL = "https://github.com/Tencent/VasSonic" // web site url
4242
def GIT_URL = "https://github.com/Tencent/VasSonic.git" // git url

sonic-android/sdk/src/main/java/com/tencent/sonic/sdk/SonicConstants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class SonicConstants {
2626
/**
2727
* SonicSDK version
2828
*/
29-
public final static String SONIC_VERSION_NUM = "1.0.1";
29+
public final static String SONIC_VERSION_NUM = "1.1.0";
3030

3131
/**
3232
* Sonic parameter prefix

sonic-android/sdk/src/main/java/com/tencent/sonic/sdk/SonicRuntime.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ public boolean shouldLog(int level) {
181181

182182
/**
183183
* Get user agent of current runtime, this method will be called before sonic session make a
184-
* session connection to request data.(sonic sdk info such like "sonic-sdk-version/1.0" will
184+
* session connection to request data.(sonic sdk info such like "sonic-sdk-version/1.1.0" will
185185
* be added to this user agent.)
186186
* @return The user agent
187187
*/

0 commit comments

Comments
 (0)