Bring in the new navigation menu

API v8-compliant, sized correctly, all that good jazz.
This commit is contained in:
Bradlee Speice
2014-12-22 22:14:16 -05:00
parent 51783afc0b
commit 21f940d767
14 changed files with 140 additions and 38 deletions

View File

@ -1,22 +1,20 @@
package org.bspeice.minimalbible;
import org.acra.ACRA;
import org.acra.ReportingInteractionMode;
import org.acra.annotation.ReportsCrashes;
/**
* Create a MinimalBible application that we can extend from the main release
* Currently it's not doing much, but would allow for shenanigans during testing in the future
*/
/*
@ReportsCrashes(formKey = "",
mailTo = "bspeice.nc@gmail.com",
mode = ReportingInteractionMode.SILENT
)
*/
public class MinimalBibleDebug extends MinimalBible implements Injector {
@Override
public void onCreate() {
super.onCreate();
ACRA.init(this);
// ACRA.init(this);
}
}