Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 2782bf9..cafd10b 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -15,13 +15,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-allprojects {
- tasks.withType(JavaCompile) {
- // TODO include deprecations at some point, but currently they are *many*
- options.compilerArgs << "-Xlint:all" << "-Xlint:-deprecation" << "-Xlint:-dep-ann"
- }
-}
-
buildscript {
repositories {
jcenter()
@@ -52,6 +45,13 @@ if (signingFile.exists()) apply from: signingFile
def signingBetaFile = file 'signing-beta.gradle'
if (signingBetaFile.exists()) apply from: signingBetaFile
+allprojects {
+ tasks.withType(JavaCompile) {
+ // TODO include deprecations at some point, but currently they are *many*
+ options.compilerArgs << "-Xlint:all" << "-Xlint:-deprecation" << "-Xlint:-dep-ann"
+ }
+}
+
android {
compileSdkVersion 29
buildToolsVersion '29.0.3'