Skip to content

Commit b7f6c3b

Browse files
committed
added licensing information
1 parent b7abc18 commit b7f6c3b

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright (c) 2011-2012 WareNinja.com
2+
http://www.WareNinja.com - https://github.com/WareNinja
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13+
implied.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@ ANDROID_HOME, and all traces of your Android SDK from your PATH.
1313
./gradlew clean build
1414
```
1515

16+
17+
This code is originally based off of
18+
19+
https://github.com/wareninja/generic-oauth2-login-for-android/
20+
21+
but has been substantially modified for use with Firefox Accounts.

android/build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,12 @@ androidUnitTest {
8484

8585

8686
dependencies {
87-
compile 'org.mozilla.accounts.fxa:fxa:0.9.0'
88-
testCompile 'org.mozilla.accounts.fxa:fxa:0.9.0'
87+
compile project(':libraries:fxa')
88+
testCompile project(':libraries:fxa')
89+
90+
// Uncomment this for release builds
91+
// compile 'org.mozilla.accounts.fxa:fxa:0.9.0'
92+
// testCompile 'org.mozilla.accounts.fxa:fxa:0.9.0'
8993

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

0 commit comments

Comments
 (0)