Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed bugs #425

Open
wants to merge 14 commits into
base: v0.8.X-API-24
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added ._README.md
Binary file not shown.
106 changes: 53 additions & 53 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
# Android generated
bin/
gen/

# Ant
build.xml
local.properties

# Maven
target/
pom.xml.*
release.properties

# Eclipse
.classpath
.project
.externalToolBuilders/
.apt_generated/

# IntelliJ
*.iml
*.ipr
*.iws
.idea/
out/
output/
.gitignore.orig
.project.bak
.settings/org.eclipse.core.resources.prefs
.settings/org.eclipse.core.runtime.prefs
.settings/org.eclipse.jdt.apt.core.prefs
.settings/org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.launching.prefs
.settings/
.properties
**/*.iml
**/*/.idea
**/.idea
.gradle
build/
**/.gradle
**/*/build
**/build
# key info:
ultimateandroid.jks
keystore.properties
gradleinfo.properties


# Ignore Gradle GUI config
gradle-app.setting
manifest-merger-release-report.txt
*.apk
# Android generated
bin/
gen/
# Ant
build.xml
local.properties
# Maven
target/
pom.xml.*
release.properties
# Eclipse
.classpath
.project
.externalToolBuilders/
.apt_generated/
# IntelliJ
*.iml
*.ipr
*.iws
.idea/
out/
output/
.gitignore.orig
.project.bak
.settings/org.eclipse.core.resources.prefs
.settings/org.eclipse.core.runtime.prefs
.settings/org.eclipse.jdt.apt.core.prefs
.settings/org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.launching.prefs
.settings/
.properties
**/*.iml
**/*/.idea
**/.idea
.gradle
build/
**/.gradle
**/*/build
**/build
# key info:
ultimateandroid.jks
keystore.properties
gradleinfo.properties
# Ignore Gradle GUI config
gradle-app.setting
manifest-merger-release-report.txt
*.apk
86 changes: 43 additions & 43 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
language: android

# Turning off caching to avoid caching Issues
# cache: false
# Using the new Container-Based Infrastructure
sudo: false

env:
global:
# Initiating clean Gradle output
- TERM=dumb
# Amount of memory granted to Gradle JVM
- GRADLE_OPTS="-Xmx512m -XX:MaxPermSize=512m"
# General Android settings used in builds
- ANDROID_TARGET=android-23

before_install:
# Making sure gradlew has executable permissions
- cd UltimateRecyclerView
- chmod a+x gradlew

android:
components:
# We are using the latest revision of Android SDK Tools

- android-23
# The BuildTools version we are using for our project
- build-tools-23.0.1

- platform-tools
- tools
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository

licenses:
- 'android-sdk-license-.+'

script:

#./gradlew build
./gradlew assembleDebug
language: android
# Turning off caching to avoid caching Issues
# cache: false
# Using the new Container-Based Infrastructure
sudo: false
env:
global:
# Initiating clean Gradle output
- TERM=dumb
# Amount of memory granted to Gradle JVM
- GRADLE_OPTS="-Xmx512m -XX:MaxPermSize=512m"
# General Android settings used in builds
- ANDROID_TARGET=android-23
before_install:
# Making sure gradlew has executable permissions
- cd UltimateRecyclerView
- chmod a+x gradlew
android:
components:
# We are using the latest revision of Android SDK Tools
- android-23
# The BuildTools version we are using for our project
- build-tools-23.0.1
- platform-tools
- tools
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
script:
#./gradlew build
./gradlew assembleDebug
Loading