Skip to content

Commit cad0b64

Browse files
committed
Initial commit
0 parents  commit cad0b64

File tree

2 files changed

+75
-0
lines changed

2 files changed

+75
-0
lines changed

.gitignore

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Built application files
2+
*.apk
3+
*.ap_
4+
5+
# Files for the ART/Dalvik VM
6+
*.dex
7+
8+
# Java class files
9+
*.class
10+
11+
# Generated files
12+
gen/
13+
out/
14+
15+
# Gradle files
16+
.gradle/
17+
build/
18+
19+
# Local configuration file (sdk path, etc)
20+
local.properties
21+
22+
# Proguard folder generated by Eclipse
23+
proguard/
24+
25+
# Log Files
26+
*.log
27+
28+
# Android Studio Navigation editor temp files
29+
.navigation/
30+
31+
# Android Studio captures folder
32+
captures/
33+
34+
# IntelliJ
35+
*.iml
36+
.idea/workspace.xml
37+
.idea/tasks.xml
38+
.idea/gradle.xml
39+
.idea/assetWizardSettings.xml
40+
.idea/dictionaries
41+
.idea/libraries
42+
.idea/caches
43+
.idea/markdown-navigator
44+
.idea/markdown-*.xml
45+
46+
# Keystore files
47+
# Uncomment the following line if you do not want to check your keystore files in.
48+
*.jks
49+
*.keystore
50+
!radius-android-debug-key.keystore
51+
signing-*.properties
52+
!signing-debug.properties
53+
54+
# External native build folder generated in Android Studio 2.2 and later
55+
.externalNativeBuild
56+
57+
# Freeline
58+
freeline.py
59+
freeline/
60+
freeline_project_description.json
61+
62+
# fastlane
63+
fastlane/report.xml
64+
fastlane/Preview.html
65+
fastlane/screenshots
66+
fastlane/test_output
67+
fastlane/readme.md
68+
fastlane/google_play_creds.json
69+
70+
# Travis
71+
.travis.tar

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Android Core Libraries
2+
3+
This library provides a set of common utilities and classes that can be used in a number of projects.
4+

0 commit comments

Comments
 (0)