Skip to content

Commit

Permalink
Unify min sdk version to 16 (#32)
Browse files Browse the repository at this point in the history
Dependency updates:
AGP to 4.1.0-alpha08
Kotlin to 1.3.72
  • Loading branch information
koral-- authored May 2, 2020
1 parent 39d39f4 commit 39db271
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
20 changes: 11 additions & 9 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ GEM
colored2 (3.1.2)
cork (0.3.0)
colored2 (~> 3.1)
danger (6.3.2)
danger (7.0.1)
claide (~> 1.0)
claide-plugins (>= 0.9.2)
colored2 (~> 3.1)
cork (~> 0.1)
faraday (~> 0.9)
faraday (>= 0.9.0, < 2.0)
faraday-http-cache (~> 2.0)
git (~> 1.6)
git (~> 1.7)
kramdown (~> 2.0)
kramdown-parser-gfm (~> 1.0)
no_proxy_fix
Expand All @@ -33,13 +33,14 @@ GEM
danger-plugin-api (~> 1.0)
danger-plugin-api (1.0.0)
danger (> 2.0)
faraday (0.17.3)
faraday (1.0.1)
multipart-post (>= 1.2, < 3)
faraday-http-cache (2.0.0)
faraday (~> 0.8)
git (1.6.0)
faraday-http-cache (2.2.0)
faraday (>= 0.8)
git (1.7.0)
rchardet (~> 1.8)
kramdown (2.1.0)
kramdown (2.2.1)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
multipart-post (2.1.1)
Expand All @@ -52,8 +53,9 @@ GEM
ast
ruby-ll (~> 2.1)
open4 (1.3.4)
public_suffix (4.0.3)
public_suffix (4.0.4)
rchardet (1.8.0)
rexml (3.2.4)
ruby-ll (2.1.2)
ansi
ast
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
buildscript {
ext.versions = [
minSdk : 15,
minSdk : 16,
compileSdk : 29,
targetSdk : 29,
kotlin : '1.3.71',
androidGradlePlugin: '4.1.0-alpha04',
kotlin : '1.3.72',
androidGradlePlugin: '4.1.0-alpha08',
versionsPlugin : '0.27.0',
hyperion : '0.9.27',
debugDb : '1.0.6',
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android {
compileSdkVersion versions.compileSdk
defaultConfig {
applicationId 'pl.droidsonroids.foqa.sample'
minSdkVersion 16
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
}

Expand Down

0 comments on commit 39db271

Please sign in to comment.