Ignore:
Timestamp:
Nov 11, 2013, 10:29:28 AM (11 years ago)
Author:
Antonio Araujo Brett <aaraujo@…>
Branches:
master
Children:
4c4873f
Parents:
42e7061
Message:

Deshabilitados mensajes de depuración en clases.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TibisayMovil/src/ve/gob/cenditel/tibisaymovil/SelectCertificateToEncryptActivity.java

    rc14b8d2 rba6bc7c  
    462462                certificateToEncrypt = SelectCertificateToEncryptActivity.this.selected.getAbsolutePath();
    463463               
    464                 Toast.makeText(getApplicationContext(), "SelectCertificateToEncryptActivity: "+certificateToEncrypt, Toast.LENGTH_SHORT).show();
     464                //Toast.makeText(getApplicationContext(), "SelectCertificateToEncryptActivity: "+certificateToEncrypt, Toast.LENGTH_SHORT).show();
    465465               
    466466               
     
    499499        private void encryptFile(final String fileToEncrypt, final String certificateToEncrypt) {
    500500               
    501                 Toast.makeText(getApplicationContext(), "Encrypting file: " + fileToEncrypt, Toast.LENGTH_SHORT).show();
     501                //Toast.makeText(getApplicationContext(), "Encrypting file: " + fileToEncrypt, Toast.LENGTH_SHORT).show();
    502502               
    503503               
    504504                // chequear disponibilidad de directorio de certificados
    505505            if (!checkCertificatesDirectoryAvailability()){
    506                 Toast.makeText(getApplicationContext(), "SelectCertificateToEncryptActivity: directorio no disponible", Toast.LENGTH_SHORT).show();
     506                //Toast.makeText(getApplicationContext(), "SelectCertificateToEncryptActivity: directorio no disponible", Toast.LENGTH_SHORT).show();
    507507               
    508508                finish();
     
    655655                       
    656656                        outFile = encrypted_dir_files + fIn.getName()+".cdoc";
    657                         Toast.makeText(getApplicationContext(), "outFile: " + outFile, Toast.LENGTH_SHORT).show();
     657                        //Toast.makeText(getApplicationContext(), "outFile: " + outFile, Toast.LENGTH_SHORT).show();
    658658                       
    659659                       
     
    876876                // We can read and write the media
    877877                mExternalStorageAvailable = mExternalStorageWriteable = true;
    878                 Toast.makeText(getApplicationContext(), "We can read and write the media", Toast.LENGTH_SHORT).show();
     878                //Toast.makeText(getApplicationContext(), "We can read and write the media", Toast.LENGTH_SHORT).show();
    879879               
    880880                // Crear directorio CertificatesToEncrypt donde se almacenan los certificados de
     
    896896                mExternalStorageAvailable = true;
    897897                mExternalStorageWriteable = false;
    898                 Toast.makeText(getApplicationContext(), "We can only read the media", Toast.LENGTH_SHORT).show();
     898                //Toast.makeText(getApplicationContext(), "We can only read the media", Toast.LENGTH_SHORT).show();
    899899               
    900900                builder.setMessage("Directorio "+certificatesDir+ " montado de solo lectura. No se pueden almancenar certificados.").setTitle("Error:");
     
    905905                //  to know is we can neither read nor write
    906906                mExternalStorageAvailable = mExternalStorageWriteable = false;
    907                 Toast.makeText(getApplicationContext(), "we can neither read nor write", Toast.LENGTH_SHORT).show();
     907                //Toast.makeText(getApplicationContext(), "we can neither read nor write", Toast.LENGTH_SHORT).show();
    908908               
    909909                builder.setMessage("Directorio "+certificatesDir+ " no está disponible. No se pueden almancenar certificados.").setTitle("Error:");                     
     
    941941        {
    942942            e.printStackTrace();
    943             Toast.makeText(this, "Could not initiate File System.. Is Sdcard mounted properly?", Toast.LENGTH_LONG).show();
     943            //Toast.makeText(this, "Could not initiate File System.. Is Sdcard mounted properly?", Toast.LENGTH_LONG).show();
     944            Toast.makeText(this, "No se pudo iniciar el sistema de archivos. ¿Está la SDCARD montada?", Toast.LENGTH_LONG).show();
    944945            return false;
    945946        }
Note: See TracChangeset for help on using the changeset viewer.