removed useless log message from Android class

This commit is contained in:
StefanoMagrassi
2016-01-05 12:02:48 +01:00
parent a4e55d33c7
commit c4009429a4
+1 -6
View File
@@ -53,9 +53,7 @@ public class Base64ToGallery extends CordovaPlugin {
filePrefix = DEFAULT_FILE_PREFIX;
}
// Create the bitmap from the base64 string
Log.d("Base64ToGallery", base64);
// Create the bitmap from the base64 string
byte[] decodedString = Base64.decode(base64, Base64.DEFAULT);
Bitmap bmp = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
@@ -99,9 +97,6 @@ public class Base64ToGallery extends CordovaPlugin {
+ c.get(Calendar.MINUTE)
+ c.get(Calendar.SECOND);
Log.i("Base64ToGallery", "Android version " + deviceVersion);
int check = deviceVersion.compareTo("2.3.3");
File folder;