Skip to content

Commit 39aec45

Browse files
committed
Merge pull request #9 from larsgrefer/fix/LibraryStructure
Use Gradle to build this as android-library
2 parents 92c2a85 + 7e6002b commit 39aec45

32 files changed

Lines changed: 433 additions & 371 deletions

.gitignore

Lines changed: 105 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,106 @@
1+
2+
# Created by https://www.gitignore.io/api/android,intellij,gradle
3+
4+
### Android ###
5+
# Built application files
6+
*.apk
7+
*.ap_
8+
9+
# Files for the Dalvik VM
10+
*.dex
11+
12+
# Java class files
13+
*.class
14+
15+
# Generated files
16+
bin/
17+
gen/
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+
### Android Patch ###
39+
gen-external-apklibs
40+
41+
42+
### Intellij ###
43+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
44+
45+
*.iml
46+
47+
## Directory-based project format:
48+
.idea/
49+
# if you remove the above rule, at least ignore the following:
50+
51+
# User-specific stuff:
52+
# .idea/workspace.xml
53+
# .idea/tasks.xml
54+
# .idea/dictionaries
55+
# .idea/shelf
56+
57+
# Sensitive or high-churn files:
58+
# .idea/dataSources.ids
59+
# .idea/dataSources.xml
60+
# .idea/sqlDataSources.xml
61+
# .idea/dynamic.xml
62+
# .idea/uiDesigner.xml
63+
64+
# Gradle:
65+
# .idea/gradle.xml
66+
# .idea/libraries
67+
68+
# Mongo Explorer plugin:
69+
# .idea/mongoSettings.xml
70+
71+
## File-based project format:
72+
*.ipr
73+
*.iws
74+
75+
## Plugin-specific files:
76+
77+
# IntelliJ
78+
/out/
79+
80+
# mpeltonen/sbt-idea plugin
81+
.idea_modules/
82+
83+
# JIRA plugin
84+
atlassian-ide-plugin.xml
85+
86+
# Crashlytics plugin (for Android Studio and IntelliJ)
87+
com_crashlytics_export_strings.xml
88+
crashlytics.properties
89+
crashlytics-build.properties
90+
fabric.properties
91+
92+
93+
### Gradle ###
194
.gradle
2-
/local.properties
3-
/.idea/workspace.xml
4-
/.idea/libraries
5-
.DS_Store
6-
/build
7-
/gen
95+
build/
96+
97+
# Ignore Gradle GUI config
98+
gradle-app.setting
99+
100+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
101+
!gradle-wrapper.jar
102+
103+
# Cache of project
104+
.gradletasknamecache
105+
106+

.idea/.name

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

.idea/RootShell.iml

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

.idea/artifacts/RootShell_jar.xml

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

.idea/codeStyleSettings.xml

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

.idea/compiler.xml

Lines changed: 0 additions & 23 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 & 5 deletions
This file was deleted.

.idea/misc.xml

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

.idea/modules.xml

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

0 commit comments

Comments
 (0)