[android]: Remove unused GDPR consent screen

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2021-04-04 17:00:00 +03:00
parent 265131740f
commit 073f5e21aa
4 changed files with 0 additions and 42 deletions

View file

@ -18,7 +18,6 @@ import com.mapswithme.maps.auth.AuthorizationListener;
import com.mapswithme.maps.bookmarks.data.DistanceAndAzimut;
import com.mapswithme.maps.bookmarks.data.FeatureId;
import com.mapswithme.maps.bookmarks.data.MapObject;
import com.mapswithme.maps.gdpr.UserBindingListener;
import com.mapswithme.maps.location.LocationHelper;
import com.mapswithme.maps.routing.RouteMarkData;
import com.mapswithme.maps.routing.RoutePointInfo;

View file

@ -1,14 +0,0 @@
package com.mapswithme.maps.gdpr;
import androidx.fragment.app.Fragment;
import com.mapswithme.maps.base.BaseToolbarActivity;
public class MwmOptOutActivity extends BaseToolbarActivity
{
@Override
protected Class<? extends Fragment> getFragmentClass()
{
return OptOutFragment.class;
}
}

View file

@ -1,21 +0,0 @@
package com.mapswithme.maps.gdpr;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.mapswithme.maps.R;
public class OptOutFragment extends Fragment
{
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState)
{
return inflater.inflate(R.layout.fragment_gdpr, container, false);
}
}

View file

@ -1,6 +0,0 @@
package com.mapswithme.maps.gdpr;
public interface UserBindingListener
{
void onUserBound(boolean success);
}