Skip to content

Commit b7abc18

Browse files
committed
just reuse the libMozStumbler repo
1 parent 053482d commit b7abc18

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: android
2+
jdk: oraclejdk7
3+
4+
android:
5+
components:
6+
- android-21
7+
- build-tools-21.0.0
8+
- extra-android-support
9+
licenses:
10+
- android-sdk-license-5be876d5
11+
12+
script:
13+
- make

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
all:
2+
./gradlew build
3+
4+
install:
5+
./gradlew installDebug
6+
7+
clean:
8+
./gradlew clean
9+
rm -rf app/src/main/libs
10+
rm -rf app/src/main/obj
11+
rm -rf build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Firefox Accounts for Android
2-
[![Build Status](https://travis-ci.org/crankycoder/fxa-android.png)](https://travis-ci.org/crankycoder/fxa-android.png)
2+
[![Build Status](https://travis-ci.org/crankycoder/fxa-android.png)](https://travis-ci.org/crankycoder/fxa-android)
33

44
# Building a debug version from command line #
55

android/build.gradle

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ buildscript {
1616
}
1717

1818
dependencies {
19-
2019
classpath 'com.android.tools.build:gradle:1.0.0'
2120
classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
2221
classpath 'com.github.jcandksolutions.gradle:android-unit-test:2.1.1'
@@ -85,9 +84,8 @@ androidUnitTest {
8584

8685

8786
dependencies {
88-
compile project(':libraries:fxa')
89-
testCompile project(':libraries:fxa')
90-
87+
compile 'org.mozilla.accounts.fxa:fxa:0.9.0'
88+
testCompile 'org.mozilla.accounts.fxa:fxa:0.9.0'
9189

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

libraries/fxa/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ bintray {
6464
}
6565
configurations = ['archives']
6666
pkg {
67-
repo = "firefoxaccounts"
67+
repo = "libMozStumbler"
6868
name = "libfxa"
6969
websiteUrl = siteUrl
7070
vcsUrl = gitUrl

0 commit comments

Comments
 (0)