Skip to content

Commit

Permalink
Bump version to 1.0.0-alpha14
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jan 17, 2021
1 parent 57d8d9f commit 8841d24
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ If you want to test the library, please visit the sample app on [Google Play](ht
## Usage
The first step for using this library is, to add it to the dependency section in your project:
```gradle
implementation 'com.chillibits:simplesettings:1.0.0-alpha13'
implementation 'com.chillibits:simplesettings:1.0.0-alpha14'
// Required dependencies
implementation 'com.google.android.material:material:<latest-version>'
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
applicationId "com.chillibits.simplesettingssample"
minSdkVersion 21
targetSdkVersion 30
versionCode 85
versionCode library_version_code
versionName library_version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
*/

buildscript {
ext.library_version = '1.0.0-alpha13'
ext.library_version = '1.0.0-alpha14'
ext.library_version_code = 86
ext.kotlin_version = '1.4.21-2'
repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion simplesettings/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
versionCode 85
versionCode library_version_code
versionName library_version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
Expand Down

0 comments on commit 8841d24

Please sign in to comment.