Skip to content

Commit 2b994f6

Browse files
committed
Update CHANGELOG.md and README.md
1 parent 64934c8 commit 2b994f6

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
- Removed from the library:
1818
- AWS Auto Scaling
1919
- Elastic Load Balancing
20+
- Modules now produce .aar files instead of .jar files
2021

2122
## [Release 2.16.13](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.16.13)
2223

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The AWS SDK for Android is a collection of low-level libraries for direct intera
1111

1212
## Installation
1313

14-
The AWS SDK for Android can be directly embedded via `.jar` files, or you can download it from the Maven Central repository, by integrating it into your Android project's Gradle files.
14+
The AWS SDK for Android can be directly embedded via `.aar` files, or you can download it from the Maven Central repository, by integrating it into your Android project's Gradle files.
1515

1616
### From Maven
1717
We recommend obtaining the dependency from Maven. To do so, add a dependency to your app's (module-level) `build.gradle`, in the `dependencies` section:
@@ -24,16 +24,16 @@ dependencies {
2424

2525
Above, SERVICE might be `s3`, `ddb`, `pinpoint`, etc. A full list is provided below.
2626

27-
### Downloading SDK Jars
27+
### Downloading SDK libraries
2828

29-
You can also download a `.zip` file containg `.jar` files for each of the SDK modules, [here](https://sdk-for-android.amazonwebservices.com/latest/aws-android-sdk.zip).
29+
You can also download a `.zip` file containg `.aar` files for each of the SDK modules, [here](https://sdk-for-android.amazonwebservices.com/latest/aws-android-sdk.zip).
3030

31-
Add the jar files to a folder in your project called `libs` (create one if it doesn't already exist).
31+
Add the aar files to a folder in your project called `libs` (create one if it doesn't already exist).
3232

3333
Ensure that the `libs` directory is included in your module-level `build.gradle`, under the `dependencies` block:
3434
```groovy
3535
dependencies {
36-
implementation fileTree(dir: 'libs', include: ['*.jar'])
36+
implementation fileTree(dir: 'libs', include: ['*.aar'])
3737
}
3838
```
3939

0 commit comments

Comments
 (0)