Java or kotlin Library?

Is there any library for Android?
Java aur Kotlin so I can use boltiot along with Android apps.
Please resolve @rahul.singh1

Hi @ankur_tripathi,

Java and Kotlin both has requesting library .

Check the code below

OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
Request request = new Request.Builder()
  .url("https://cloud.boltiot.com/digitalWrite?pin=2&state=HIGH&deviceName=BO7488206")
  .method("GET", null)
  .build();
Response response = client.newCall(request).execute();

@shoeb.ahmed can help you out in case you have more query related to Android app.