Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dav4jvm
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
bitfire web engineering
dav4jvm
Commits
05326d92
Commit
05326d92
authored
Nov 11, 2017
by
Ricki Hirner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dokka KDoc; build tools
parent
11cdaae4
Pipeline
#13829751
passed with stages
in 2 minutes and 38 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
.gitlab-ci.yml
.gitlab-ci.yml
+12
-2
README.md
README.md
+3
-1
build.gradle
build.gradle
+4
-1
No files found.
.gitlab-ci.yml
View file @
05326d92
...
...
@@ -2,7 +2,6 @@ image: registry.gitlab.com/bitfireat/davdroid:latest
before_script
:
-
export GRADLE_USER_HOME=`pwd`/.gradle; chmod +x gradlew
-
(cd /sdk/emulator; ./emulator @test -no-audio -no-window & wait-for-emulator.sh)
cache
:
paths
:
...
...
@@ -10,8 +9,19 @@ cache:
test
:
script
:
-
./gradlew -i check connectedCheck
-
(cd /sdk/emulator; ./emulator @test -no-audio -no-window & wait-for-emulator.sh)
-
./gradlew check connectedCheck
artifacts
:
paths
:
-
build/outputs/lint-results-debug.html
-
build/reports/
pages
:
script
:
-
./gradlew dokka
-
mkdir public && mv build/dokka public
artifacts
:
paths
:
-
public
only
:
-
master
README.md
View file @
05326d92
...
...
@@ -5,12 +5,14 @@
# dav4android
dav4android is an Android WebDAV/CalDAV/CardDAV library which has
primarily been developed for
[
DAVdroid
](
https://
davdroid.bitfire.at
)
.
primarily been developed for
[
DAVdroid
](
https://
www.davdroid.com
)
.
It's not intended as a general WebDAV framework for all kinds of
applications, but you may find it useful to fork and adapt it
to your needs.
Generated KDoc: https://bitfireAT.gitlab.io/dav4android/dokka/dav4android/
## License
...
...
build.gradle
View file @
05326d92
buildscript
{
ext
.
kotlin_version
=
'1.1.51'
ext
.
dokka_version
=
'0.9.15'
repositories
{
jcenter
()
...
...
@@ -12,6 +13,7 @@ buildscript {
dependencies
{
classpath
'com.android.tools.build:gradle:3.0.0'
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
}
}
...
...
@@ -24,10 +26,11 @@ repositories {
apply
plugin:
'com.android.library'
apply
plugin:
'kotlin-android'
apply
plugin:
'org.jetbrains.dokka-android'
android
{
compileSdkVersion
27
buildToolsVersion
'27.0.
0
'
buildToolsVersion
'27.0.
1
'
defaultConfig
{
minSdkVersion
14
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment