Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# ckChangeLog - An Android Library to display a Change Log

![Screenshot](screenshot_1.png)
![Screenshot](screenshot_2.png)
![Screenshot](http://i.imgur.com/5U6xzvk.png)

This library provides an easy way to display a change log in your app.

Expand Down
50 changes: 50 additions & 0 deletions ckChangeLog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#Android generated
bin
gen
build

#built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

#Eclipse
.project
.classpath
.settings

# Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
.idea
*.iml

#Maven
target
release.properties
pom.xml.*

#Command line
local.properties
build.xml
proguard-project.txt

# Windows thumbnail db
Thumbs.db

# OSX files
.DS_Store

# Crashlytics
com_crashlytics_export_strings.xml
crashlytics-build.properties
crashlytics.properties

# Android Studio
.gradle
gradle
gradlew
gradlew.bat
19 changes: 14 additions & 5 deletions ckChangeLog/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,32 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'com.android.tools.build:gradle:1.2.2'
}
}

repositories {
jcenter()
mavenCentral()
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
versionName "1.2.2"

minSdkVersion 4
versionName "2.0.0"
minSdkVersion 9
}
}

dependencies {
compile 'com.afollestad:material-dialogs:0.7.2.8'
compile 'se.emilsjolander:stickylistheaders:2.5.2'
}

project.ext {
pom = [
group: "de.cketti.library.changelog",
Expand All @@ -42,5 +51,5 @@ project.ext {
]
}

apply from: '../android-mvn-push.gradle'
//apply from: '../android-mvn-push.gradle'

Loading