File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed
src/main/java/org/mozilla/firefoxaccounts
src/main/java/org/mozilla/accounts/fxa/tasks/dev Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ dependencies {
89
89
testCompile project(' :libraries:fxa' )
90
90
91
91
// 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 '
94
94
95
95
// https://developer.android.com/tools/support-library/features.html
96
96
// In general, we recommend including the v4 support and v7 appcompat
Original file line number Diff line number Diff line change 13
13
14
14
import org .mozilla .accounts .fxa .FxAGlobals ;
15
15
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.
16
21
import org .mozilla .accounts .fxa .tasks .dev .DevDestroyOAuthTask ;
17
22
import org .mozilla .accounts .fxa .tasks .dev .DevRetrieveProfileTask ;
18
23
import org .mozilla .accounts .fxa .tasks .dev .DevSetDisplayNameTask ;
Original file line number Diff line number Diff line change 1
1
all :
2
2
./gradlew build
3
3
4
+ # This installs the build into the local maven repository
5
+ install :
6
+ ./gradlew install
7
+
4
8
test :
5
9
./gradlew test
6
10
Original file line number Diff line number Diff line change 1
1
// each of the version numbers must be 0-99
2
2
def versionMajor = 0
3
3
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
5
5
6
6
// Double check the versioning
7
7
for (versionPart in [versionPatch, versionMinor, versionMajor]) {
Original file line number Diff line number Diff line change 10
10
import static org .mozilla .accounts .fxa .tasks .dev .DevConstants .STABLE_DEV_OAUTH2_SERVER ;
11
11
12
12
public class DevDestroyOAuthTask extends DestroyOAuthTask {
13
-
14
-
15
13
public DevDestroyOAuthTask (Context ctx ) {
16
14
super (ctx , STABLE_DEV_OAUTH2_SERVER );
17
15
}
You can’t perform that action at this time.
0 commit comments