update gradle/libs and use Perference.Editor.apply() instead of commit()

This commit is contained in:
Christian Schabesberger 2015-11-26 19:36:14 +01:00
parent e41c46c075
commit 71bb59dbb8
4 changed files with 6 additions and 6 deletions

View File

@ -21,9 +21,9 @@ android {
dependencies { dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.1.0' compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:support-v4:23.1.0' compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:design:23.1.0' compile 'com.android.support:design:23.1.1'
compile 'org.jsoup:jsoup:1.8.3' compile 'org.jsoup:jsoup:1.8.3'
compile 'org.mozilla:rhino:1.7.7' compile 'org.mozilla:rhino:1.7.7'
} }

View File

@ -348,6 +348,6 @@ public class PlayVideoActivity extends AppCompatActivity {
} }
SharedPreferences.Editor editor = prefs.edit(); SharedPreferences.Editor editor = prefs.edit();
editor.putBoolean(PREF_IS_LANDSCAPE, isLandscape); editor.putBoolean(PREF_IS_LANDSCAPE, isLandscape);
editor.commit(); editor.apply();
} }
} }

View File

@ -162,7 +162,7 @@ public class SettingsActivity extends PreferenceActivity {
Environment.getExternalStorageDirectory().getAbsolutePath() + "/NewPipe"; Environment.getExternalStorageDirectory().getAbsolutePath() + "/NewPipe";
spEditor.putString(context.getString(R.string.downloadPathPreference) spEditor.putString(context.getString(R.string.downloadPathPreference)
, newPipeDownloadStorage); , newPipeDownloadStorage);
spEditor.commit(); spEditor.apply();
} }
} }
} }

View File

@ -5,7 +5,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.3.0' classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files