Skip to content

Commit 90003ab

Browse files
committed
Initial commit: Readium Android WebView App
0 parents  commit 90003ab

26 files changed

Lines changed: 1407 additions & 0 deletions

.gitignore

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
release/
18+
19+
# Gradle files
20+
.gradle/
21+
build/
22+
23+
# Local configuration file (sdk path, etc)
24+
local.properties
25+
26+
# Proguard folder generated by Eclipse
27+
proguard/
28+
29+
# Log Files
30+
*.log
31+
32+
# Android Studio Navigation editor temp files
33+
.navigation/
34+
35+
# Android Studio captures folder
36+
captures/
37+
38+
# IntelliJ
39+
*.iml
40+
.idea/workspace.xml
41+
.idea/tasks.xml
42+
.idea/gradle.xml
43+
.idea/assetWizardSettings.xml
44+
.idea/dictionaries
45+
.idea/libraries
46+
.idea/jarRepositories.xml
47+
.idea/caches
48+
.idea/modules.xml
49+
.idea/navEditor.xml
50+
.idea/.name
51+
.idea/compiler.xml
52+
.idea/misc.xml
53+
.idea/deploymentTargetDropDown.xml
54+
.idea/vcs.xml
55+
56+
# Keystore files
57+
*.jks
58+
*.keystore
59+
60+
# External native build folder generated in Android Studio 2.2 and later
61+
.externalNativeBuild
62+
.cxx/
63+
64+
# Google Services (e.g. APIs or Firebase)
65+
google-services.json
66+
67+
# Freeline
68+
freeline.py
69+
freeline/
70+
freeline_project_description.json
71+
72+
# fastlane
73+
fastlane/report.xml
74+
fastlane/Preview.html
75+
fastlane/screenshots
76+
fastlane/test_output
77+
fastlane/readme.md
78+
79+
# Version control
80+
vcs.xml
81+
82+
# lint
83+
lint/intermediates/
84+
lint/generated/
85+
lint/outputs/
86+
lint/tmp/
87+
lint-results*.html
88+
lint-results*.xml
89+
90+
# Android Profiling
91+
*.hprof
92+
93+
# macOS
94+
.DS_Store
95+
96+
# Windows
97+
Thumbs.db
98+
ehthumbs.db
99+
Desktop.ini

0 commit comments

Comments
 (0)