Skip to content

Commit 3fd7efa

Browse files
author
AWS
committed
AWS SDK for Android 2.6.2
1 parent 04a8494 commit 3fd7efa

File tree

43 files changed

+87
-127
lines changed

Some content is hidden

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

43 files changed

+87
-127
lines changed

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.6.1</version>
15+
<version>2.6.2</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.6.1</version>
23+
<version>2.6.2</version>
2424
</dependency>
2525
</dependencies>
2626

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.6.1</version>
24+
<version>2.6.2</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.6.1</version>
32+
<version>2.6.2</version>
3333
</dependency>
3434

3535
<dependency>

aws-android-sdk-auth-core/src/main/java/com/amazonaws/mobile/auth/core/signin/ui/buttons/SignInButton.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ private Drawable getButtonBackground(final int buttonFaceColor) {
172172
insetBackgroundDrawable});
173173

174174
// Top shadow is the furthest down drawable, so it is ok if this overlaps the bottom shadow.
175-
layerDrawable.setLayerInset(1, 0, 0, 0, 0);
175+
layerDrawable.setLayerInset(0, 0, 0, 0, 0);
176176

177177
// Bottom shadow does not overlap the top shadow.
178-
layerDrawable.setLayerInset(2, attributes.getTopShadowThickness(), attributes.getTopShadowThickness(), 0, 0);
178+
layerDrawable.setLayerInset(1, attributes.getTopShadowThickness(), attributes.getTopShadowThickness(), 0, 0);
179179

180180
// Background must not overlap either of the shadows.
181-
layerDrawable.setLayerInset(3, attributes.getTopShadowThickness(), attributes.getTopShadowThickness(),
181+
layerDrawable.setLayerInset(2, attributes.getTopShadowThickness(), attributes.getTopShadowThickness(),
182182
attributes.getBottomShadowThickness(), attributes.getBottomShadowThickness());
183183

184184
return layerDrawable;

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.6.1</version>
24+
<version>2.6.2</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.6.1</version>
39+
<version>2.6.2</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>
Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22

33
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4-
xmlns:tools="http://schemas.android.com/tools"
4+
xmlns:tools="http://schemas.android.com/tools"
55
package="com.amazonaws.mobile.auth.facebook">
66

77
<uses-permission android:name="android.permission.INTERNET" />
88
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
99
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
1010

11-
<application>
12-
<meta-data
13-
android:name="com.facebook.sdk.ApplicationId"
14-
android:value="@string/facebook_app_id" />
15-
16-
<activity
17-
android:name="com.facebook.FacebookActivity"
18-
android:exported="true"
19-
tools:ignore="MissingRegistered">
20-
<intent-filter>
21-
<action android:name="android.intent.action.VIEW" />
22-
23-
<category android:name="android.intent.category.DEFAULT" />
24-
<category android:name="android.intent.category.BROWSABLE" />
25-
26-
<data android:scheme="@string/facebook_login_protocol_scheme" />
27-
</intent-filter>
28-
</activity>
29-
30-
</application>
3111
</manifest>

aws-android-sdk-auth-facebook/src/main/res/values/config.xml

Lines changed: 0 additions & 14 deletions
This file was deleted.

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.6.1</version>
24+
<version>2.6.2</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.6.1</version>
43+
<version>2.6.2</version>
4444
<type>aar</type>
4545
</dependency>
4646

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22

33
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4-
xmlns:tools="http://schemas.android.com/tools"
4+
xmlns:tools="http://schemas.android.com/tools"
55
package="com.amazonaws.mobile.auth.google">
66

77
<uses-permission android:name="android.permission.INTERNET" />
88
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
99
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
1010
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
1111
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
12-
13-
<application>
14-
<meta-data
15-
android:name="com.google.android.gms.version"
16-
android:value="@integer/google_play_services_version" />
17-
</application>
1812

1913
</manifest>

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

Lines changed: 5 additions & 5 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.6.1</version>
24+
<version>2.6.2</version>
2525
</parent>
2626

2727
<repositories>
@@ -36,28 +36,28 @@
3636
<groupId>com.amazonaws</groupId>
3737
<artifactId>aws-android-sdk-auth-core</artifactId>
3838
<optional>false</optional>
39-
<version>2.6.1</version>
39+
<version>2.6.2</version>
4040
<type>aar</type>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.amazonaws</groupId>
4444
<artifactId>aws-android-sdk-auth-google</artifactId>
4545
<optional>true</optional>
46-
<version>2.6.1</version>
46+
<version>2.6.2</version>
4747
<type>aar</type>
4848
</dependency>
4949
<dependency>
5050
<groupId>com.amazonaws</groupId>
5151
<artifactId>aws-android-sdk-auth-facebook</artifactId>
5252
<optional>true</optional>
53-
<version>2.6.1</version>
53+
<version>2.6.2</version>
5454
<type>aar</type>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.amazonaws</groupId>
5858
<artifactId>aws-android-sdk-auth-userpools</artifactId>
5959
<optional>true</optional>
60-
<version>2.6.1</version>
60+
<version>2.6.2</version>
6161
<type>aar</type>
6262
</dependency>
6363
<dependency>

aws-android-sdk-auth-ui/src/main/java/com/amazonaws/mobile/auth/ui/SignInView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class SignInView extends LinearLayout {
5656
private static final int IMAGE_LAYOUT_MARGINS = dp(10);
5757

5858
/** String that represents the SDK Version. */
59-
private static final String SDK_VERSION = "2.6.1";
59+
private static final String SDK_VERSION = "2.6.2";
6060

6161
/** Common Prefix of the namespaces of different SignIn providers. */
6262
private static final String NAMESPACE_COMMON_PREFIX = "com.amazonaws.mobile.auth";

0 commit comments

Comments
 (0)