8000 bumped to 0.9.16 to reuse the OAuth2 URL to properly get a signin · crankycoder/fxa-android@a0c09d5 · GitHub
[go: up one dir, main page]

Skip to content

Commit a0c09d5

Browse files
committed
bumped to 0.9.16 to reuse the OAuth2 URL to properly get a signin
redirect
1 parent b3fa704 commit a0c09d5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

libraries/fxa/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// each of the version numbers must be 0-99
22
def versionMajor = 0
33
def versionMinor = 9 // minor feature releases
4-
def versionPatch = 15 // This should be bumped for hot fixes
4+
def versionPatch = 16 // This should be bumped for hot fixes
55

66
// Double check the versioning
77
for (versionPart in [versionPatch, versionMinor, versionMajor]) {

libraries/fxa/src/main/java/org/mozilla/accounts/fxa/dialog/base/AbstractFxAOAuthDialog.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public AbstractFxAOAuthDialog(Context context,
4444
String scopeText = TextUtils.join(" ", scopes);
4545
mUrl = signinUrl
4646
+ "?client_id=" + AppKey
47+
+ "&action=signin"
4748
+ "&state=99" // Someone else can implement this state thing
4849
+ "&scope="+scopeText
4950
+ "&redirect_uri=" + mAppCallback;

0 commit comments

Comments
 (0)
0