Skip to content

Commit b3c86c6

Browse files
committed
fix(android): native api usage fix
1 parent 0b31978 commit b3c86c6

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

packages/md5/platforms/android/java/com/nativescript/md5/md5.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ public class md5 {
1717

1818
public static boolean checkMD5(String md5, File updateFile) {
1919
if (TextUtils.isEmpty(md5) || updateFile == null) {
20-
Log.e(TAG, "MD5 string empty or updateFile null");
2120
return false;
2221
}
2322

@@ -27,8 +26,6 @@ public static boolean checkMD5(String md5, File updateFile) {
2726
return false;
2827
}
2928

30-
Log.v(TAG, "Calculated digest: " + calculatedDigest);
31-
Log.v(TAG, "Provided digest: " + md5);
3229

3330
return calculatedDigest.equalsIgnoreCase(md5);
3431
}
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"uses": [
3-
"com.akylas.carto.additions*:*", "com.carto*:*"
4-
],
5-
"blacklist":["com.carto*:*JNI"]
3+
"com.nativescript.md5:md5"
4+
]
65
}

0 commit comments

Comments
 (0)