Skip to content

Commit

Permalink
Upgrade Android SDK Version from 1.0 to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marlonlu committed Sep 25, 2017
1 parent 72795e2 commit e658462
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Pic 1: Before Using VasSonic | Pic 2: After Using VasSonic
[Getting started with PHP](https://github.com/Tencent/VasSonic/blob/master/sonic-php/README.md)

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


## Support
Expand Down
2 changes: 1 addition & 1 deletion sonic-android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Add VasSonic gradle plugin as a dependency in your module's build.gradle
```gradle
compile 'com.tencent.sonic:sdk:1.0.0'
compile 'com.tencent.sonic:sdk:1.1.0'
```

## Implement sonic interface:
Expand Down
2 changes: 1 addition & 1 deletion sonic-android/docs/Sonic接入指引.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
在模块的build.gradle文件里面加入

```
compile 'com.tencent.sonic:sdk:1.0.0'
compile 'com.tencent.sonic:sdk:1.1.0'
```

## 2.代码接入
Expand Down
4 changes: 2 additions & 2 deletions sonic-android/sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ dependencies {
})

// compile sdk from jcenter
// compile 'com.tencent.sonic:sdk:1.0.0'
compile 'com.tencent.sonic:sdk:1.1.0'

// compile sonic-sdk from local path
compile project(path: ':sdk')
// compile project(path: ':sdk')

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
Expand Down
4 changes: 2 additions & 2 deletions sonic-android/sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.0"
versionName "1.1.0"

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

Expand All @@ -36,7 +36,7 @@ dependencies {


// sdk info
version = "1.0.0" // sdk version num
version = "1.1.0" // sdk version num
group = "com.tencent.sonic" // maven group id for the artifact
def SITE_URL = "https://github.com/Tencent/VasSonic" // web site url
def GIT_URL = "https://github.com/Tencent/VasSonic.git" // git url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class SonicConstants {
/**
* SonicSDK version
*/
public final static String SONIC_VERSION_NUM = "1.0.1";
public final static String SONIC_VERSION_NUM = "1.1.0";

/**
* Sonic parameter prefix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public boolean shouldLog(int level) {

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

0 comments on commit e658462

Please sign in to comment.