File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed
src/main/java/com/google/secrets_gradle_plugin Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ In your app-level `build.gradle` file:
19
19
Groovy:
20
20
``` groovy
21
21
plugins {
22
- id 'com.google.secrets_gradle_plugin' version '0.4 '
22
+ id 'com.google.secrets_gradle_plugin' version '0.5 '
23
23
}
24
24
```
25
25
26
26
Kotlin:
27
27
``` groovy
28
28
plugins {
29
- id("com.google.secrets_gradle_plugin") version "0.4 "
29
+ id("com.google.secrets_gradle_plugin") version "0.5 "
30
30
}
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -72,6 +72,6 @@ object PluginInfo {
72
72
const val group = " com.google"
73
73
const val artifactId = " secrets_gradle_plugin"
74
74
const val name = " secretsGradlePlugin"
75
- const val version = " 0.4 "
75
+ const val version = " 0.5 "
76
76
const val implementationClass = " com.google.secrets_gradle_plugin.SecretsPlugin"
77
77
}
Original file line number Diff line number Diff line change @@ -64,7 +64,6 @@ class SecretsPlugin : Plugin<Project> {
64
64
val buildTypeProperties = try {
65
65
project.rootProject.loadPropertiesFile(buildTypeFileName)
66
66
} catch (e: FileNotFoundException ) {
67
- println (" Could not find $buildTypeFileName " )
68
67
null
69
68
}
70
69
buildTypeProperties?.let {
@@ -76,7 +75,6 @@ class SecretsPlugin : Plugin<Project> {
76
75
val flavorProperties = try {
77
76
project.rootProject.loadPropertiesFile(flavorFileName)
78
77
} catch (e: FileNotFoundException ) {
79
- println (" Could not find $flavorFileName " )
80
78
null
81
79
}
82
80
flavorProperties?.let {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ plugins {
17
17
id(" kotlin-android" )
18
18
19
19
// 1. Include the plugin
20
- id(" com.google.secrets_gradle_plugin" ) version " 0.4 "
20
+ id(" com.google.secrets_gradle_plugin" ) version " 0.5 "
21
21
}
22
22
23
23
android {
You can’t perform that action at this time.
0 commit comments