diff --git a/android/gradle.properties b/android/gradle.properties
index dfa1e9f24dd1c64da4088c407c3fe93277061b61..285f43a0d11b4b548459981eec29cd0e63ba1d20 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,5 +1,5 @@
 org.gradle.jvmargs=-Xmx1536M
 android.useAndroidX=true
 android.enableJetifier=true
-app.versionName=1.2.13
-app.versionCode=24
+app.versionName=1.2.14
+app.versionCode=25
diff --git a/lib/utils/tools.dart b/lib/utils/tools.dart
new file mode 100644
index 0000000000000000000000000000000000000000..fd48b2b009b80b22248d6e7f08a63e96c4065bd7
--- /dev/null
+++ b/lib/utils/tools.dart
@@ -0,0 +1,7 @@
+import 'package:flutter/foundation.dart';
+
+void printlog(String message) {
+  if (!kReleaseMode) {
+    debugPrint(message);
+  }
+}
diff --git a/pubspec.yaml b/pubspec.yaml
index 00a9529af8cfa51874cb8a1da260d1c723e61516..15041ac710e50752d05ed6bc3e3f9245be5af2b0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,7 +1,7 @@
 name: hangman
 description: Hangman game, have fun with words and letters!
 publish_to: 'none'
-version: 1.2.13+24
+version: 1.2.14+25
 
 environment:
   sdk: '^3.0.0'