Skip to content

Commit 8647d5c

Browse files
author
AWS
committed
AWS SDK for Android 2.7.7
1 parent ef9eec6 commit 8647d5c

File tree

341 files changed

+35558
-871
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

341 files changed

+35558
-871
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log - AWS SDK for Android
22

3+
## [Release 2.7.7](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.7.7)
4+
5+
### Bug Fixes
6+
7+
* **AWS IoT**
8+
* Handle exception during `AWSIotMqttManager.connect` call and pass it through the status callback. See [issue #556](https://github.com/aws/aws-sdk-android/issues/556)
9+
10+
### Misc. Updates
11+
12+
* Generate Javadoc for Amazon Kinesis and Amazon Kinesis Firehose clients. See [issue #560](https://github.com/aws/aws-sdk-android/issues/560)
13+
* Model updates for the following services
14+
* AWS IoT
15+
316
## [Release 2.7.6](https://github.com/aws/aws-sdk-android/releases/tag/release_v2.7.6)
417

518
### Bug Fixes

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ apply plugin: 'kotlin-android'
55
apply plugin: 'kotlin-android-extensions'
66

77
android {
8-
compileSdkVersion 27
8+
compileSdkVersion 26
99
defaultConfig {
1010
applicationId "com.amazonaws.mobileconnectors.demo.awssdkforandroid"
1111
minSdkVersion 15
12-
targetSdkVersion 27
12+
targetSdkVersion 26
1313
versionCode 1
1414
versionName "1.0"
1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -25,7 +25,7 @@ android {
2525
dependencies {
2626
implementation fileTree(dir: 'libs', include: ['*.jar'])
2727
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
28-
implementation 'com.android.support:appcompat-v7:27.1.1'
28+
implementation 'com.android.support:appcompat-v7:26.+'
2929
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
3030
testImplementation 'junit:junit:4.12'
3131
androidTestImplementation 'com.android.support.test:runner:1.0.2'

aws-android-sdk-apigateway-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<parent>
1313
<groupId>com.amazonaws</groupId>
1414
<artifactId>aws-android-sdk-pom</artifactId>
15-
<version>2.7.6</version>
15+
<version>2.7.7</version>
1616
</parent>
1717

1818
<dependencies>
1919
<dependency>
2020
<groupId>com.amazonaws</groupId>
2121
<artifactId>aws-android-sdk-core</artifactId>
2222
<optional>false</optional>
23-
<version>2.7.6</version>
23+
<version>2.7.7</version>
2424
</dependency>
2525
</dependencies>
2626

aws-android-sdk-auth-core/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 27
5-
buildToolsVersion '27.0.3'
6-
4+
compileSdkVersion 26
75

86
defaultConfig {
97
minSdkVersion 11
10-
targetSdkVersion 27
8+
targetSdkVersion 26
119
versionCode 1
1210
versionName "1.0"
1311

aws-android-sdk-auth-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.7.6</version>
24+
<version>2.7.7</version>
2525
</parent>
2626

2727
<dependencies>
2828
<dependency>
2929
<groupId>com.amazonaws</groupId>
3030
<artifactId>aws-android-sdk-core</artifactId>
3131
<optional>false</optional>
32-
<version>2.7.6</version>
32+
<version>2.7.7</version>
3333
</dependency>
3434

3535
<dependency>

aws-android-sdk-auth-facebook/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 26
55

66
defaultConfig {
77
minSdkVersion 11
8-
targetSdkVersion 23
8+
targetSdkVersion 26
99
versionCode 1
1010
versionName "1.0"
1111

aws-android-sdk-auth-facebook/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.7.6</version>
24+
<version>2.7.7</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,7 +36,7 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.7.6</version>
39+
<version>2.7.7</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>

aws-android-sdk-auth-google/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 26
55

66
defaultConfig {
77
minSdkVersion 11
8-
targetSdkVersion 23
8+
targetSdkVersion 26
99
versionCode 1
1010
versionName "1.0"
1111

aws-android-sdk-auth-google/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>com.amazonaws</groupId>
2323
<artifactId>aws-android-sdk-pom</artifactId>
24-
<version>2.7.6</version>
24+
<version>2.7.7</version>
2525
</parent>
2626

2727
<repositories>
@@ -40,7 +40,7 @@
4040
<groupId>com.amazonaws</groupId>
4141
<artifactId>aws-android-sdk-auth-core</artifactId>
4242
<optional>false</optional>
43-
<version>2.7.6</version>
43+
<version>2.7.7</version>
4444
<type>aar</type>
4545
</dependency>
4646

aws-android-sdk-auth-ui/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 23
4+
compileSdkVersion 26
55

66
defaultConfig {
77
minSdkVersion 23
8-
targetSdkVersion 23
8+
targetSdkVersion 26
99
versionCode 1
1010
versionName "1.0"
1111

@@ -20,6 +20,10 @@ android {
2020
}
2121
}
2222

23+
lintOptions {
24+
abortOnError false
25+
}
26+
2327
}
2428

2529
dependencies {

0 commit comments

Comments
 (0)