Skip to content

Commit

Permalink
Add build warning about missing config file
Browse files Browse the repository at this point in the history
The Gradle buildscript now prints a warning if there is no
release.properties file in the root directory.
  • Loading branch information
blinskey committed Mar 7, 2015
1 parent a3154d7 commit 9a7b536
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GreekReference/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'com.android.tools.build:gradle:1.1.0'
}
}

Expand Down Expand Up @@ -49,6 +49,8 @@ android {
proguardFile 'proguard.cfg'
zipAlignEnabled true
}
} else {
logger.warn("WARNING: No signing configuration found.")
}
}
}
Expand Down

0 comments on commit 9a7b536

Please sign in to comment.