I am creating an android app using estimote beacons and estimote clould. From github I downloaded code with sdk, where I found an application class as following :-
public class DemosApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
// Initializes Estimote SDK with your App ID and App Token from Estimote Cloud.
// You can find your App ID and App Token in the
// Apps section of the Estimote Cloud (http://cloud.estimote.com).
EstimoteSDK.initialize(this, “YOUR APP ID”, “YOUR APP TOKEN”);
// Configure verbose debug logging.
EstimoteSDK.enableDebugLogging(true);
}
}
But in ADD APP section on estimote cloud when I selected type as MOBILE then in language there are only two options OBJECTIVE-C and SWIFT. There was no option for android .So kindly guide me to get APP ID and APP TOKEN for android app ?