File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
AndroidSDK/src/com/leanplum Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -436,6 +436,8 @@ public void onLocationChanged(Location location) {
436436 /**
437437 * Request location for user location update if googleApiClient is connected.
438438 */
439+ // Suppressing missing permission warning which since it is up to client to add location
440+ // permission to their manifest.
439441 @ SuppressWarnings ("MissingPermission" )
440442 private void requestLocation () {
441443 if (!Leanplum .isLocationCollectionEnabled () || googleApiClient == null
Original file line number Diff line number Diff line change 4444import java .util .Arrays ;
4545import java .util .HashSet ;
4646
47+ // Suppressing apache dependency deprecation. We should upgrade our socket IO client to new version
48+ // which uses okhttp library.
4749@ SuppressWarnings ("deprecation" )
4850class SocketIOClient {
4951 interface Handler {
Original file line number Diff line number Diff line change 5353import javax .net .ssl .SSLSocketFactory ;
5454import javax .net .ssl .TrustManager ;
5555
56+ // Suppressing apache dependency deprecation. We should upgrade our socket IO client to new version
57+ // which uses okhttp library.
5658@ SuppressWarnings ("deprecation" )
5759class WebSocketClient {
5860 private static final String TAG = "WebSocketClient" ;
You can’t perform that action at this time.
0 commit comments