Skip to content

Commit

Permalink
docs: Update Readme (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski authored Jan 23, 2020
1 parent 1531835 commit b33f68c
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ Add root project `build.gradle`:
buildscript {
repositories {
gradlePluginPortal()
google()
}
dependencies {
implementation "com.project.starter:plugins:0.4.0"
implementation "com.project.starter:plugins:0.5.0"
}
}
```
Expand Down Expand Up @@ -62,10 +63,10 @@ apply plugin: 'com.starter.library.android' // or 'com.starter.application.andro
// optional config with default values
projectConfig {
javaFilesAllowed = false
generateBuildConfig = false // for library plugin only
defaultVariants = ["debug"]
coverageExclusions = [""]
javaFilesAllowed false
generateBuildConfig false // for library plugin only
defaultVariants ["debug"]
coverageExclusions [""]
}
// overridden settings for single project
Expand Down Expand Up @@ -134,19 +135,19 @@ All submodules will use this config as default
apply plugin: 'com.starter.config'
commonConfig {
javaVersion = JavaVersion.VERSION_1_8
javaFilesAllowed = true
javaVersion JavaVersion.VERSION_1_8
javaFilesAllowed true
androidPlugin {
compileSdkVersion = 29
minSdkVersion = 23
targetSdkVersion = 29
compileSdkVersion 29
minSdkVersion 23
targetSdkVersion 29
}
qualityPlugin {
enabled = true
formatOnCompile = false
enabled true
formatOnCompile false
}
versioningPlugin {
enabled = true
enabled true
}
}
```
Expand Down

0 comments on commit b33f68c

Please sign in to comment.