Skip to content

Commit a63cda9

Browse files
authored
Merge pull request #231 from Droidcon-Boston/ne/2019Release
2019 Release of the App
2 parents 1440155 + 17a28ee commit a63cda9

File tree

202 files changed

+13686
-1810
lines changed

Some content is hidden

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

202 files changed

+13686
-1810
lines changed

.circleci/config.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/android:api-28-alpha
6+
7+
environment:
8+
JVM_OPTS: -Xmx3200m
9+
10+
steps:
11+
- checkout:
12+
13+
- restore_cache:
14+
key: jars-{{ checksum "Droidcon-Boston/build.gradle" }}-{{ checksum "Droidcon-Boston/app/build.gradle" }}
15+
16+
- run:
17+
name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
18+
command: cd Droidcon-Boston && pwd && ls && sudo chmod +x ./gradlew
19+
20+
- run:
21+
name: Download Dependencies
22+
command: cd Droidcon-Boston && ./gradlew androidDependencies
23+
24+
- save_cache:
25+
paths:
26+
- .gradle
27+
key: jars-{{ checksum "Droidcon-Boston/build.gradle" }}-{{ checksum "Droidcon-Boston/app/build.gradle" }}
28+
29+
- run:
30+
name: Static Analysis Checks
31+
command: cd Droidcon-Boston && ./gradlew detekt ktlintCheck lint
32+
33+
- run:
34+
name: Run Tests
35+
command: cd Droidcon-Boston && ./gradlew test
36+
37+
- store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
38+
path: Droidcon-Boston/app/build/reports
39+
destination: reports
40+
41+
- store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
42+
path: Droidcon-Boston/app/build/test-results

Droidcon-Boston/.idea/codeStyleSettings.xml

-778
This file was deleted.

Droidcon-Boston/.idea/codeStyles/Project.xml

+180
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Droidcon-Boston/.idea/codeStyles/codeStyleConfig.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)