Skip to content

Commit

Permalink
Disable plugin in sample app for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
arriolac committed Jan 26, 2021
1 parent 6f61c91 commit d2834b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions sample-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {
id("kotlin-android")

// 1. Include the plugin
id("com.google.secrets_gradle_plugin") version "0.1"
// id("com.google.secrets_gradle_plugin") version "0.1"
}

android {
Expand All @@ -44,12 +44,12 @@ dependencies {
}

// 2. Optionally configure the plugin
secrets {
// Optionally specify a different file name containing your secrets.
// The plugin defaults to "local.properties"
propertiesFileName = "secrets.properties"

// Add keys that the plugin should ignore from the properties file
ignoreList.add("keyToIgnore")
ignoreList.add("ignore*")
}
//secrets {
// // Optionally specify a different file name containing your secrets.
// // The plugin defaults to "local.properties"
// propertiesFileName = "secrets.properties"
//
// // Add keys that the plugin should ignore from the properties file
// ignoreList.add("keyToIgnore")
// ignoreList.add("ignore*")
//}
2 changes: 1 addition & 1 deletion sample-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
android:theme="@style/Theme.MyApplication">
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="${gmpApiKey}" />
android:value="gmpApiKey" />
<activity
android:name="com.google.secrets_gradle_plugin.sample.MainActivity"
android:label="@string/app_name"
Expand Down

0 comments on commit d2834b1

Please sign in to comment.