このように現在の場所を保存するアプリケーション(com.example.MyApplication)があります
SharedPreferences settings = getSharedPreferences(PREFERENCES, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("City", city);
editor.commit();
別のアプリケーション(com.example.SecondApplication)を作成し、他のアプリケーションから都市の文字列を取得したいのですが、どうすればよいですか?