안드로이드 앱을 BB 10으로 포팅했습니다. .BAR로 리 패키징 한 후 Android 런타임을 사용하면 GooglePlayServices를 제외하고 앱이 정상적으로 실행됩니다. com.google.android.gms.Application은 화면에 갈 때 충돌합니다. 이것과 관련있다.BB10의 GooglePlayServices와 다름 Android RunTime
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient;
import com.google.android.gms.location.LocationClient;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.LocationSource;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.LatLng;
일부 구현, GooglePlayServicesClient.OnConnectionFailedListener GooglePlayServicesClient.ConnectionCallbacks 있습니다 : 나는이 도서관에서 사용하고있는 클래스가 확인. Google지도의 경우 Android 10 런타임 설명서에서 BB 10 대체 솔루션을 찾았습니다. 이 라이브러리 클래스의 대체 솔루션은 무엇입니까 ??
Google지도가 아닌 –