Skip to content
This repository was archived by the owner on Sep 3, 2023. It is now read-only.

Commit

Permalink
0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Apr 9, 2016
1 parent f620a29 commit 7a5efbe
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Add this to your module's `build.gradle` file:
```gradle
dependencies {
// ...
compile('com.github.afollestad:assent:0.2.1') {
compile('com.github.afollestad:assent:0.2.2') {
transitive = true
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0-alpha4'
classpath 'com.android.tools.build:gradle:2.1.0-alpha5'
}
}

Expand Down
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 5
versionName "0.2.1"
versionCode 6
versionName "0.2.2"
}
lintOptions {
abortOnError false
Expand All @@ -22,6 +22,6 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:support-v13:23.2.1'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:support-v13:23.3.0'
}
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "com.afollestad.assentsample"
minSdkVersion 14
targetSdkVersion 23
versionCode 5
versionName "0.2.1"
versionCode 6
versionName "0.2.2"
}
lintOptions {
abortOnError false
Expand All @@ -23,6 +23,6 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:appcompat-v7:23.3.0'
compile project(':library')
}

0 comments on commit 7a5efbe

Please sign in to comment.