Skip to content

Instantly share code, notes, and snippets.

@Pulimet
Created September 11, 2017 11:48
Show Gist options
  • Save Pulimet/f79d4863a2198f1887c46aee23f2b038 to your computer and use it in GitHub Desktop.
Save Pulimet/f79d4863a2198f1887c46aee23f2b038 to your computer and use it in GitHub Desktop.
Get advertising id
public static String getAdvertisingId() {
try {
return AdvertisingIdClient.getAdvertisingIdInfo(Contextor.getInstance().getContext()).getId();
} catch (IOException e) {
e.printStackTrace();
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
} catch (GooglePlayServicesRepairableException e) {
e.printStackTrace();
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment