This repository has been archived by the owner on Dec 5, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from nhaarman/dev
3.0.0
- Loading branch information
Showing
69 changed files
with
1,538 additions
and
911 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,11 @@ | ||
# built application files | ||
*bin\.apk | ||
*.ap_ | ||
|
||
# files for the dex VM | ||
*.dex | ||
|
||
# Java class files | ||
*.class | ||
|
||
# generated files | ||
bin/ | ||
gen/ | ||
|
||
# Local configuration file (sdk path, etc) | ||
local.properties | ||
|
||
assets/ | ||
|
||
.settings | ||
eclipsebin | ||
|
||
bin | ||
gen | ||
build | ||
out | ||
lib | ||
local.properties | ||
|
||
target | ||
pom.xml.* | ||
release.properties | ||
|
||
.idea | ||
*.iml | ||
classes | ||
|
||
obj | ||
|
||
**/bin/* | ||
**/target/* | ||
**/gen/* | ||
**/build/* | ||
**/.idea/* | ||
**/*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/workspace.xml | ||
.DS_Store | ||
|
||
#ignore thumbnails created by windows | ||
Thumbs.db | ||
#Ignore files build by Visual Studio | ||
*.obj | ||
*.exe | ||
*.pdb | ||
*.user | ||
*.aps | ||
*.pch | ||
*.vspscc | ||
*_i.c | ||
*_p.c | ||
*.ncb | ||
*.suo | ||
*.tlb | ||
*.tlh | ||
*.bak | ||
*.cache | ||
*.ilk | ||
*.log | ||
[Bb]in | ||
[Dd]ebug*/ | ||
*.lib | ||
*.sbr | ||
obj/ | ||
[Rr]elease*/ | ||
_ReSharper*/ | ||
[Tt]est[Rr]esult* | ||
example/.classpath | ||
example/.project | ||
example/proguard-project.txt | ||
*/.classpath | ||
*.project | ||
*proguard-project.txt | ||
library/build.gradle | ||
.metadata/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
language: java | ||
jdk: oraclejdk7 | ||
|
||
env: | ||
matrix: | ||
- ANDROID_SDKS=sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a SKIN=WXGA800 LINT=true | ||
global: | ||
- TERM=dumb | ||
- secure: A5Bq4mDhsHqKK8PlxNlxVGJuSBi1L2uBg817821AOXyPjSSXS5GQK+4bIp+io8R/bPzxCNuC8nqJUvupa0GrEgKhzfA0JF5nhMjLyZ5cfpbNOYWCJHlbiZCDkW4MFhtWTCGedu3sQ8WifyJ25ceh+1nxxAn/hIhJUfYssNw1+8Q= | ||
before_install: | ||
# Install base Android SDK | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq libstdc++6:i386 lib32z1 expect | ||
- export COMPONENTS=extra-android-m2repository,build-tools-19.0.3,android-19,$ANDROID_SDKS | ||
- curl -3L https://raw.github.com/embarkmobile/android-sdk-installer/version-2/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS | ||
- source ~/.android-sdk-installer/env | ||
|
||
# Create and start emulator | ||
#- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI --skin $SKIN | ||
#- emulator -avd test -no-audio -no-window & | ||
|
||
before_script: | ||
# Make sure the emulator has started before running tests | ||
#- wait_for_emulator | ||
|
||
install: | ||
- true | ||
|
||
script: | ||
- sudo chmod +x gradlew | ||
#- ./gradlew connectedCheck | ||
|
||
- if [[ $LINT == 'true' ]]; then ./gradlew lint ; fi | ||
|
||
after_success: | ||
- ./gradlew uploadArchives -PnexusUsername="${nexusUsername}" -PnexusPassword="${nexusPassword}" | ||
|
||
notifications: | ||
email: false |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.