Skip to content

Commit

Permalink
Merge pull request #1076 from waylife/develop
Browse files Browse the repository at this point in the history
fix issue #1073. crash on oneplus two(Android 5.1.1, Oxygen 2.0.0).
  • Loading branch information
TomHennen committed Aug 15, 2015
2 parents 773c862 + 2cd6a54 commit 269d54d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Expand Up @@ -36,8 +36,7 @@
android:label="@string/app_name"
android:backupAgent=".core.backup.OpmlBackupAgent"
android:restoreAnyVersion="true"
android:logo="@drawable/ic_launcher"
android:theme="@style/Theme.AntennaPod.Light">
android:logo="@drawable/ic_launcher">
<meta-data
android:name="com.google.android.backup.api_key"
android:value="AEdPqrEAAAAI3a05VToCTlqBymJrbFGaKQMvF-bBAuLsOdavBA"/>
Expand Down
Expand Up @@ -7,6 +7,7 @@
import android.widget.LinearLayout;

import de.danoeh.antennapod.R;
import de.danoeh.antennapod.core.preferences.UserPreferences;

/**
* Displays the 'about' screen
Expand All @@ -18,6 +19,7 @@ public class AboutActivity extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(UserPreferences.getTheme());
super.onCreate(savedInstanceState);
getSupportActionBar().hide();
setContentView(R.layout.about);
Expand Down

0 comments on commit 269d54d

Please sign in to comment.