update gradle/libs and use Perference.Editor.apply() instead of commit()
This commit is contained in:
parent
e41c46c075
commit
71bb59dbb8
4 changed files with 6 additions and 6 deletions
|
|
@ -348,6 +348,6 @@ public class PlayVideoActivity extends AppCompatActivity {
|
|||
}
|
||||
SharedPreferences.Editor editor = prefs.edit();
|
||||
editor.putBoolean(PREF_IS_LANDSCAPE, isLandscape);
|
||||
editor.commit();
|
||||
editor.apply();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ public class SettingsActivity extends PreferenceActivity {
|
|||
Environment.getExternalStorageDirectory().getAbsolutePath() + "/NewPipe";
|
||||
spEditor.putString(context.getString(R.string.downloadPathPreference)
|
||||
, newPipeDownloadStorage);
|
||||
spEditor.commit();
|
||||
spEditor.apply();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue