Skip to content

Commit 599ffd5

Browse files
authored
Merge pull request #1 from rogerhu/bump
* Update Gradle
2 parents d08150d + f504421 commit 599ffd5

File tree

14 files changed

+88
-139
lines changed

14 files changed

+88
-139
lines changed

.gitignore

Lines changed: 63 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,65 @@
1+
# Source: https://gist.github.com/nesquena/5617544/raw/53710b374e7df3302df43b552488d876040ada3d/.gitignore
2+
3+
# built application files
4+
*.apk
5+
*.ap_
6+
7+
# files for the dex VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# generated files
14+
bin/
15+
gen/
16+
17+
# Local configuration file (sdk path, etc)
18+
local.properties
19+
20+
# Eclipse project files
21+
.classpath
22+
.project
23+
24+
# Proguard folder generated by Eclipse
25+
proguard/
26+
27+
# Intellij project files
28+
*.iml
29+
*.ipr
30+
*.iws
31+
.idea/
32+
33+
*.pydevproject
34+
.project
35+
.metadata
36+
bin/**
37+
tmp/**
38+
tmp/**/*
39+
*.tmp
40+
*.bak
41+
*.swp
42+
*~.nib
43+
local.properties
44+
.classpath
45+
.settings/
46+
.loadpath
47+
48+
# External tool builders
49+
.externalToolBuilders/
50+
51+
# Locally stored "Eclipse launch configurations"
52+
*.launch
53+
54+
# CDT-specific
55+
.cproject
56+
57+
# PDT-specific
58+
.buildpath
59+
60+
# Android Studio project files
161
*.iml
262
.gradle
3-
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
6-
.DS_Store
7-
/build
8-
/captures
63+
.idea
64+
build
65+
import-summary.txt

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

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

.idea/copyright/profiles_settings.xml

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

.idea/encodings.xml

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

.idea/gradle.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

.idea/runConfigurations.xml

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

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: android
2+
jdk:
3+
- oraclejdk8
4+
sudo: false
5+
android:
6+
components:
7+
- tools
8+
- platform-tools
9+
- build-tools-25.0.3
10+
- android-25
11+
licenses:
12+
- android-sdk-license-.+
13+
script:
14+
- "./gradlew build check --daemon"
15+
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results-debug.xml"

0 commit comments

Comments
 (0)