Skip to content

Commit

Permalink
version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
a.mochalov committed Apr 23, 2021
1 parent 9417300 commit 01374d0
Show file tree
Hide file tree
Showing 1,464 changed files with 39 additions and 80,842 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ The available library modules are listed below.
* `android-sdk-core`: Core functionality (required).
* `android-sdk-api` : Api generated models and methods.

* `androidsdk`: deprecated copy version of the android-sdk-core(will be removed in future releases).
* `androidsdkapi` : deprecated copy version of the android-sdk-api(will be removed in future releases).
* `androidsdk`: deprecated copy version of the android-sdk-core(will be removed in future releases since 01.09.2021).
* `androidsdkapi` : deprecated copy version of the android-sdk-api(will be removed in future releases since 01.09.2021).

For example, your `app/build.gradle` script will contains such dependencies:
```
dependencies {
implementation 'com.vk:android-sdk-core:3.0.0
implementation 'com.vk:android-sdk-api:3.0.0 // generated models and api methods
implementation 'com.vk:android-sdk-core:3.x.x
implementation 'com.vk:android-sdk-api:3.x.x // generated models and api methods
}
```

Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ SOFTWARE.
*/

ext.sdkVersions = [
code : '23',
name : '3.0.0',
code : '24',
name : '3.1.0',

minSdk : 21,
targetSdk : 29,
Expand Down
7 changes: 6 additions & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ def getArtifactId() {
return envArtifactId != null ? envArtifactId : sdkPublish.POM_ARTIFACT_ID
}

def getArtifactDescription() {
def envArtifactId = System.getenv('POM_ARTIFACT_DESCRIPTION')
return envArtifactId != null ? envArtifactId : sdkPublish.POM_ARTIFACT_DESCRIPTION
}

if (System.getenv('SDK_UPDATE') == "1") {
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven-publish'
Expand All @@ -62,7 +67,7 @@ if (System.getenv('SDK_UPDATE') == "1") {
pom.project {
packaging 'aar'
name sdkPublish.POM_NAME
description sdkPublish.POM_DESCRIPTION
description getArtifactDescription()
url sdkPublish.POM_URL

scm {
Expand Down
1 change: 0 additions & 1 deletion samples/app/notTranslatedStrings/values/strings.xml

This file was deleted.

1 change: 0 additions & 1 deletion samples/app/sdk/src/.gitignore

This file was deleted.

65 changes: 0 additions & 65 deletions samples/app/sdk/src/build.gradle

This file was deleted.

56 changes: 0 additions & 56 deletions samples/app/sdk/src/main/AndroidManifest.xml

This file was deleted.

43 changes: 0 additions & 43 deletions samples/app/sdk/src/main/java/com/vk/sdk/sample/PathUtils.kt

This file was deleted.

This file was deleted.

Loading

0 comments on commit 01374d0

Please sign in to comment.