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

Avoid print calls in production code

parent 9d5e47c0
No related branches found
No related tags found
No related merge requests found
Pipeline #5235 passed
This commit is part of merge request !23. 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=1.0.18
app.versionCode=19
app.versionName=1.0.19
app.versionCode=20
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: puissance4
description: puissance4
publish_to: 'none'
version: 1.0.18+19
version: 1.0.19+20
environment:
sdk: '^3.0.0'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment