Skip to content
This repository has been archived by the owner on Sep 17, 2023. It is now read-only.

Commit

Permalink
Added "Redmond" theme for a change. There should have been more theme…
Browse files Browse the repository at this point in the history
…s in the 0.3.3-free release?
  • Loading branch information
maxieds committed Feb 6, 2018
1 parent 2e8e0b7 commit 16cdd00
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
applicationId "com.maxieds.chameleonminilivedebugger"
minSdkVersion 21
targetSdkVersion 25
versionCode 33
versionName "0.3.3"
versionCode 34
versionName "0.3.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
</intent-filter>
</activity>
<meta-data
android:name="io.fabric.ApiKey"
android:value="e1f46b361ac26527c2bdc2e5aa4d2be73b341460" />
android:name="io.fabric.ApiKey" android:value="1f8ca135bc85ac9d9672b7b8ec147721595d4466" />
<!-- android:value="e1f46b361ac26527c2bdc2e5aa4d2be73b341460" />-->
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ public void clearStatusIcon(int iconID) {
@Override
protected void onCreate(Bundle savedInstanceState) {

if(isTaskRoot())
throw new RuntimeException("Testing the API KEY");
// fix bug where the tabs are blank when the application is relaunched:
if(runningActivity == null || !isTaskRoot()) {
super.onCreate(savedInstanceState);
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/res/menu/main_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@
android:title="Theme: Red"
app:showAsAction="never" />

<item
android:alphabeticShortcut="w"
android:checked="false"
android:checkable="false"
android:tag="@style/AppThemeRedmond"
android:title="Theme: Redmond"
app:showAsAction="never" />

<item
android:checkable="false"
android:checked="false"
Expand Down

0 comments on commit 16cdd00

Please sign in to comment.