8000 bumped to 0.9.10 · crankycoder/fxa-android@421fa9c · GitHub
[go: up one dir, main page]

Skip to content

Commit 421fa9c

Browse files
committed
bumped to 0.9.10
1 parent ba0bc0c commit 421fa9c

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ dependencies {
8989
testCompile project(':libraries:fxa')
9090

9191
// Uncomment this for release builds
92-
// compile 'org.mozilla.accounts.fxa:fxa:0.9.9'
93-
// testCompile 'org.mozilla.accounts.fxa:fxa:0.9.9'
92+
// compile 'org.mozilla.accounts.fxa:fxa:0.9.10'
93+
// testCompile 'org.mozilla.accounts.fxa:fxa:0.9.10'
9494

9595
// https://developer.android.com/tools/support-library/features.html
9696
// In general, we recommend including the v4 support and v7 appcompat

android/src/main/java/org/mozilla/firefoxaccounts/MainApp.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313

1414
import org.mozilla.accounts.fxa.FxAGlobals;
1515
import org.mozilla.accounts.fxa.dialog.DevOAuthDialog;
16+
17+
18+
// These tasks are hardcoded to point to our dev servers.
19+
// You probably want to look at org.mozilla.accounts.fxa.tasks
20+
// for the regular tasks that can be repointed to any FxA server.
1621
import org.mozilla.accounts.fxa.tasks.dev.DevDestroyOAuthTask;
1722
import org.mozilla.accounts.fxa.tasks.dev.DevRetrieveProfileTask;
1823
import org.mozilla.accounts.fxa.tasks.dev.DevSetDisplayNameTask;

libraries/fxa/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
all:
22
./gradlew build
33

4+
# This installs the build into the local maven repository
5+
install:
6+
./gradlew install
7+
48
test:
59
./gradlew test
610

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 = 9 // This should be bumped for hot fixes
4+
def versionPatch = 10 // 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/tasks/dev/DevDestroyOAuthTask.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
import static org.mozilla.accounts.fxa.tasks.dev.DevConstants.STABLE_DEV_OAUTH2_SERVER;
1111

1212
public class DevDestroyOAuthTask extends DestroyOAuthTask {
13-
14-
1513
public DevDestroyOAuthTask(Context ctx) {
1614
super(ctx, STABLE_DEV_OAUTH2_SERVER);
1715
}

0 commit comments

Comments
 (0)
0