android - Facebook custom unit for Fitness is not showing -
i implementing facebook fitness sharing feature , have custom unit nike do: i have hosted own unit object , implemented share button using following code: iv_workout_share.setonclicklistener(new view.onclicklistener() { @override public void onclick(view v) { // create object shareopengraphobject.builder object = new shareopengraphobject.builder() .putstring("fb:app_id", "xxxxx") .putstring("og:type", "fitness.course") .putstring("og:title", "example") .putstring("fitness:duration:value", (workout.duration / 1000) + "") .putstring("fitness:duration:units", "s") .putstring("fitness:distance:value", string.format("%.2f", workout.current_distance / 1000f)) .putstri...