Skip to content

Commit

Permalink
Merge pull request #1089 from meganz/release/hotfix-v3.7.2
Browse files Browse the repository at this point in the history
Hotfix Release v3.7.2 (279)
  • Loading branch information
raquelgc6 authored Dec 20, 2019
2 parents f4ce625 + 47077ee commit bedb0cb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "mega.privacy.android.app"
minSdkVersion 21
targetSdkVersion 28
versionCode 277
versionName "3.7.2 (277)"
versionCode 279
versionName "3.7.2 (279)"
multiDexEnabled true
ndk.abiFilters 'armeabi-v7a','x86', 'x86_64', 'arm64-v8a'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public class MegaApplication extends MultiDexApplication implements MegaGlobalLi
final String TAG = "MegaApplication";

final private static int INITIAL_SOUND_LEVEL = 10;
static final public String USER_AGENT = "MEGAAndroid/3.7.2_277";
static final public String USER_AGENT = "MEGAAndroid/3.7.2_279";

DatabaseHandler dbH;
MegaApiAndroid megaApi;
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/mega/privacy/android/app/utils/LogUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static void logMax(String message) {
* @param message Message for the logging system.
*/
private static void log(int logLevel, String message) {
if (!Util.DEBUG && !Util.getFileLoggerSDK()) {
if (!Util.DEBUG && !Util.getFileLoggerSDK() && !Util.getFileLoggerKarere()) {
return;
}

Expand All @@ -121,7 +121,7 @@ private static void log(int logLevel, String message) {
* @param printStackTrace Flag to print the stack trace of the exception.
*/
private static void log(int logLevel, String message, Throwable exception, boolean printStackTrace) {
if (!Util.DEBUG && !Util.getFileLoggerSDK()) {
if (!Util.DEBUG && !Util.getFileLoggerSDK() && !Util.getFileLoggerKarere()) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings_donottranslate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="app_name" context="Name of the app" translatable="false">MEGA</string>
<string name="pdf_app_name" context="PDF viewer app name" translatable="false">MEGA PDF Viewer</string>
<string name="app_version" context="Version number of the app" translatable="false">3.7.2 (277)</string>
<string name="app_version" context="Version number of the app" translatable="false">3.7.2 (279)</string>
<string name="sdk_version" context="SDK version" translatable="false">bfff951</string>
<string name="karere_version" context="MEGAchat SDK version" translatable="false">969d528</string>
<string name="prolite_account" context="PRO Lite account" translatable="false">Lite</string>
Expand Down

0 comments on commit bedb0cb

Please sign in to comment.