Author: Lucas

shape
shape
shape
shape
shape
shape
shape
shape
Standard

SSL certificate works on PC but not on Mobile

An SSL Certificate consists of three different keys: Domain certificate. Private key certificate Certificate from the Intermediary Entity (Key Bundle). When SSL is only working for some devices and for others causing such as unreliable, “untrust“, means that there is a problem in item 3 (Intermediary Entity Certificate), also called “Bundle“. What happens is that

Standard

Linux: Recursive Word or Phrase Search in Files

In addition to filtering the output of a result, the grep command can also be used to search for a word or phrase recursively in Linux directories: grep -Ril “Palavra ou frase”

Standard

Android Loading ProgressDialog

public class LoadingHelper { private static ProgressDialog progress; public void run(Context context, final CallbackInterface callback){ progress = ProgressDialog.show(context, “Carregando”, “Por favor, aguarde :D”, true); new Thread(new Runnable() { @Override public void run() { if(callback != null) callback.run(); } }).start(); } public static void dismiss(){ progress.dismiss(); } public interface CallbackInterface { public void run (); }

Standard

Activity Context VS getApplicationContext(): When to use ?

Any Android developer has encountered the problem of having to use the Activity’s own reference instead of using getApplicationContext(). Both Activity and getApplicationContext() are instances of Context, but the difference is that Activity has the context of the Activity itself, and getApplicationContext() is the Context of the Application. An Android application has several types of

Latest news

Latest news directly from our blog.