1 package com.ethlo.time; 2 3 import java.time.OffsetDateTime; 4 5 /** 6 * Optional dependency that is stubbed to satisfy Android build 7 */ 8 public class ITU { parseDateTime(String text)9 public static OffsetDateTime parseDateTime(String text) 10 { 11 throw new UnsupportedOperationException(); 12 } 13 } 14