This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
255 changed files
with
13,151 additions
and
6,552 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,78 +1,14 @@ | ||
# 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 | ||
|
||
.settings/org.eclipse.jdt.core.prefs | ||
*/.settings/org.eclipse.jdt.core.prefs | ||
**/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 | ||
*proguard-project.txt | ||
|
||
.gradle/ | ||
gradle/* | ||
gradlew* | ||
.metadata/* | ||
**.hprof |
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,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>ListViewAnimations (Parent)</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.m2e.core.maven2Builder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.m2e.core.maven2Nature</nature> | ||
</natures> | ||
</projectDescription> |
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,44 @@ | ||
language: android | ||
jdk: oraclejdk7 | ||
|
||
env: | ||
matrix: | ||
- ANDROID_TARGET=15 LINT=false MAVEN=false | ||
- ANDROID_TARGET=16 LINT=false MAVEN=false | ||
- ANDROID_TARGET=17 LINT=false MAVEN=false | ||
- ANDROID_TARGET=18 LINT=false MAVEN=false | ||
- ANDROID_TARGET=19 LINT=true MAVEN=true | ||
global: | ||
- TERM=dumb | ||
- COMPONENTS=build-tools-20.0.0,android-20,extra-android-m2repository,extra-android-support,extra-google-m2repository | ||
- LICENSES="android-sdk-license-5be876d5|android-sdk-preview-license-52d11cd2" | ||
- secure: Fo/btrr+HpwmQL6TNxZuh/TWRMouz9Z1RCo77tf3crNP4OHq9EAkduLc/b4i6HCGFM3fyfJ7AM5XMa3OQvXfF84FQnew7NGE6zB/CKFfKBIZyzntvrDg4VqWEAHzunT6+eBnGtxtrAE0bBo4MmUCklXWP8j5UAyjfFpSeJdOywY= | ||
- secure: s56rqSiiwX40CQWeHTcbyVLRtwLP/pcHWqaVCKuXtZ/m9SgRI/SHp9o8ITI2dzr3syEeAkHjkJOkHQSpH0bHi1xKY4M9ODcCugwv+yDEELw1qmI6Cvwjvj1cKsG7ebt39OnCkz+TqhtI/iOEkxq7mTizFjNIxIImMkKxeQwcFgE= | ||
- secure: UOQ9keLBuJw5Ed/eYtXarwoGuJSSvgGTob+D9aU8hVRoTUXpSDuHtk9TdS4MNXQ33jgFZEsmkpwRmV54XVEGe6xcri1uys1JDzjc+SqTEgbEh1QktfIWGvOx49YZtI2Zei0324S2qXRtemKMw4N+1XRRMP/IXEogr26Xi5JLVcI= | ||
|
||
before_install: | ||
- curl -3L https://raw.github.com/embarkmobile/android-sdk-installer/version-2/android-sdk-installer | bash /dev/stdin --install=$COMPONENTS,android-$ANDROID_TARGET,sys-img-armeabi-v7a-android-$ANDROID_TARGET --accept=$LICENSES && source ~/.android-sdk-installer/env | ||
- curl -3L -o wait_for_emulator https://github.com/embarkmobile/android-sdk-installer/raw/version-2/wait_for_emulator | ||
- sudo chmod +x wait_for_emulator | ||
|
||
# Start the emulator | ||
- echo no | android create avd --force -n test -t android-$ANDROID_TARGET --abi armeabi-v7a | ||
- emulator -avd test -no-audio -no-window & | ||
|
||
before_script: | ||
# Downloads gradle stuff | ||
- gradle | ||
- ./wait_for_emulator | ||
|
||
install: | ||
- true | ||
|
||
script: | ||
- gradle connectedCheck --info | ||
- if [[ $LINT == 'true' ]]; then gradle lint ; fi | ||
|
||
after_success: | ||
- if [[ $MAVEN == 'true' && $TRAVIS_BRANCH == 'dev' && $TRAVIS_PULL_REQUEST == 'false' ]]; then gradle uploadArchives -PnexusUsername="${nexusUsername}" -PnexusPassword="${nexusPassword}" ; fi | ||
|
||
notifications: | ||
email: false |
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,35 @@ | ||
# Reporting issues | ||
|
||
Found a bug in the library? Don't hesitate to open an issue! But first: | ||
|
||
* Check if it hasn't been reported yet. | ||
* Verify the bug still exists in the `dev` branch. | ||
|
||
When describing an issue, be precise: | ||
|
||
* Include steps to reproduce (including sample code if necessary); | ||
* What happened? What do you think should have happened? | ||
* On what Android version does this issue occur? | ||
|
||
# Contributing code | ||
|
||
## Please do! | ||
|
||
I'm happy to view and accept pull requests. However, it is important to follow these guidelines if you want to contribute. | ||
|
||
## General steps | ||
|
||
* [Fork](https://github.com/nhaarman/ListViewAnimations/fork) the repository. | ||
* Create a local clone of the repository. | ||
* Create a local branch, **based on the `dev` branch** (see the *Rules* section) | ||
* Commit your code, and push the changes to your own repository. | ||
* Create a pull request, specifying that you want to merge into the `dev` branch (or any child branch of it) | ||
|
||
## Rules | ||
|
||
* Branch names should start with either `feature_` or `bugfix_`. If there is an open issue, include its number, like `bugfix_123`. | ||
* **Do not** include in your commit message anything related to automatic issue closing, such as `Fixes issue 123`. We'll do that when merging your pull request. | ||
* **Do not** put any `@author` comment. Git keeps track of all your changes and `@author` does more harm than good. | ||
* **Do not** issue a pull request into the `master` branch. | ||
* Try to keep the diff as small as possible. For example, be aware of auto formatting. | ||
* All files should have the Apache 2 License header. |
Binary file not shown.
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
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,16 @@ | ||
ListViewAnimations Release Process | ||
================================= | ||
|
||
1. Make sure it builds! | ||
|
||
gradlew clean build | ||
|
||
2. Check the version number in the root `gradle.properties`. | ||
3. Make the release! | ||
|
||
gradlew clean generateReleaseJavadoc pushMaven -DisRelease=true | ||
|
||
4. Promote the Maven artifact on Sonatype's OSS Nexus install. | ||
5. Tag commit as release (`x.x.x`) | ||
6. Provide changelog / `.jar` files at [the Releases page](https://github.com/nhaarman/ListViewAnimations/releases). | ||
7. Increment the patch version number for future SNAPSHOT releases in the root `gradle.properties`. |
Oops, something went wrong.