Skip to content
This repository was archived by the owner on Dec 5, 2017. It is now read-only.

Commit 63ce6a8

Browse files
committed
Merge pull request #28 from nhaarman/dev
3.0.0
2 parents 984e061 + 354b4e0 commit 63ce6a8

File tree

69 files changed

+1538
-911
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1538
-911
lines changed

.gitignore

Lines changed: 10 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,11 @@
1-
# built application files
2-
*bin\.apk
3-
*.ap_
4-
5-
# files for the dex VM
6-
*.dex
7-
8-
# Java class files
9-
*.class
10-
11-
# generated files
12-
bin/
13-
gen/
14-
15-
# Local configuration file (sdk path, etc)
16-
local.properties
17-
18-
assets/
19-
20-
.settings
21-
eclipsebin
22-
23-
bin
24-
gen
25-
build
26-
out
27-
lib
28-
local.properties
29-
30-
target
31-
pom.xml.*
32-
release.properties
33-
34-
.idea
35-
*.iml
36-
classes
37-
38-
obj
39-
1+
**/bin/*
2+
**/target/*
3+
**/gen/*
4+
**/build/*
5+
**/.idea/*
6+
**/*.iml
7+
.gradle
8+
/local.properties
9+
/.idea/workspace.xml
4010
.DS_Store
41-
42-
#ignore thumbnails created by windows
43-
Thumbs.db
44-
#Ignore files build by Visual Studio
45-
*.obj
46-
*.exe
47-
*.pdb
48-
*.user
49-
*.aps
50-
*.pch
51-
*.vspscc
52-
*_i.c
53-
*_p.c
54-
*.ncb
55-
*.suo
56-
*.tlb
57-
*.tlh
58-
*.bak
59-
*.cache
60-
*.ilk
61-
*.log
62-
[Bb]in
63-
[Dd]ebug*/
64-
*.lib
65-
*.sbr
66-
obj/
67-
[Rr]elease*/
68-
_ReSharper*/
69-
[Tt]est[Rr]esult*
70-
example/.classpath
71-
example/.project
72-
example/proguard-project.txt
73-
*/.classpath
74-
*.project
75-
*proguard-project.txt
76-
library/build.gradle
11+
.metadata/*

.travis.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
language: java
2+
jdk: oraclejdk7
3+
4+
env:
5+
matrix:
6+
- ANDROID_SDKS=sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a SKIN=WXGA800 LINT=true
7+
global:
8+
- TERM=dumb
9+
- secure: A5Bq4mDhsHqKK8PlxNlxVGJuSBi1L2uBg817821AOXyPjSSXS5GQK+4bIp+io8R/bPzxCNuC8nqJUvupa0GrEgKhzfA0JF5nhMjLyZ5cfpbNOYWCJHlbiZCDkW4MFhtWTCGedu3sQ8WifyJ25ceh+1nxxAn/hIhJUfYssNw1+8Q=
10+
11+
before_install:
12+
# Install base Android SDK
13+
- sudo apt-get update -qq
14+
- sudo apt-get install -qq libstdc++6:i386 lib32z1 expect
15+
- export COMPONENTS=extra-android-m2repository,build-tools-19.0.3,android-19,$ANDROID_SDKS
16+
- curl -3L https://raw.github.com/embarkmobile/android-sdk-installer/version-2/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS
17+
- source ~/.android-sdk-installer/env
18+
19+
# Create and start emulator
20+
#- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI --skin $SKIN
21+
#- emulator -avd test -no-audio -no-window &
22+
23+
before_script:
24+
# Make sure the emulator has started before running tests
25+
#- wait_for_emulator
26+
27+
install:
28+
- true
29+
30+
script:
31+
- sudo chmod +x gradlew
32+
#- ./gradlew connectedCheck
33+
34+
- if [[ $LINT == 'true' ]]; then ./gradlew lint ; fi
35+
36+
after_success:
37+
- ./gradlew uploadArchives -PnexusUsername="${nexusUsername}" -PnexusPassword="${nexusPassword}"
38+
39+
notifications:
40+
email: false

LICENSE.txt

Lines changed: 0 additions & 202 deletions
This file was deleted.

0 commit comments

Comments
 (0)