It looks like you're new here. If you want to get involved, click one of these buttons!
String hashableText = apikey + requestToken + secretkey;
String sha256hex = new String(DigestUtils.sha256(hashableText));
List<NameValuePair> params = new ArrayList();
params.add(new BasicNameValuePair("api_key", apikey));
params.add(new BasicNameValuePair("request_token", requestToken));
params.add(new BasicNameValuePair("checksum", sha256hex));
httppost.setEntity(new UrlEncodedFormEntity(params));
Note:
javakiteconnect will not work for the android app since it is using Unirest API for making network calls. You need to find an alternate for Unirest in android like Okhttp, Volley or Retrofit.
In the above code, I think, you have different version of , try including
import org.apache.commons.codec.digest.DigestUtils;
in your project dependency.For reference, you can check out code here.