我有一个应用程序( com.example.MyApplication ),它像这样保存当前位置
SharedPreferences settings = getSharedPreferences(PREFERENCES, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("City", city);
editor.commit();
现在我想创建另一个应用程序(com.example.SecondApplication)并从另一个应用程序中检索城市字符串,我该怎么做?