Skip to content
Snippets Groups Projects
Commit 9720913b authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Avoid print calls in production code

parent 00af7bfd
No related branches found
No related tags found
No related merge requests found
Pipeline #5238 passed
This commit is part of merge request !63. Comments created here will be created in the context of that merge request.
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.59
app.versionCode=59
app.versionName=0.0.60
app.versionCode=60
Avoid print calls in production code.
Supprime les appels à print dans le code de production.
import 'package:flutter/foundation.dart';
void printlog(String message) {
if (!kReleaseMode) {
debugPrint(message);
}
}
name: puzzlegame
description: A puzzle game application.
publish_to: 'none'
version: 0.0.59+59
version: 0.0.60+60
environment:
sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment