mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
Remove the release build folder
It's what should actually be in main
This commit is contained in:
parent
07b9d04933
commit
fdd0a81837
@ -1,9 +1,12 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
<application>
|
<application
|
||||||
|
android:name="org.bspeice.minimalbible.MinimalBibleDebug"
|
||||||
|
tools:replace="android:name">
|
||||||
<activity
|
<activity
|
||||||
android:name="org.bspeice.minimalbible.test.activity.FragmentTestActivity"
|
android:name="org.bspeice.minimalbible.test.activity.FragmentTestActivity"
|
||||||
android:label="@string/title_activity_fragment_test"></activity>
|
android:label="@string/title_activity_fragment_test" />
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
@ -1,66 +0,0 @@
|
|||||||
package org.bspeice.minimalbible;
|
|
||||||
|
|
||||||
import android.app.Application;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import org.acra.ACRA;
|
|
||||||
import org.acra.ReportingInteractionMode;
|
|
||||||
import org.acra.annotation.ReportsCrashes;
|
|
||||||
import org.crosswire.jsword.book.sword.SwordBookPath;
|
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
import dagger.ObjectGraph;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by bspeice on 9/12/14.
|
|
||||||
*/
|
|
||||||
@ReportsCrashes(formKey = "",
|
|
||||||
mailTo = "bspeice.nc@gmail.com",
|
|
||||||
mode = ReportingInteractionMode.SILENT
|
|
||||||
)
|
|
||||||
public class MinimalBible extends Application implements Injector {
|
|
||||||
private String TAG = "MinimalBible";
|
|
||||||
private ObjectGraph mObjectGraph;
|
|
||||||
|
|
||||||
public static MinimalBible get(Context ctx) {
|
|
||||||
return (MinimalBible) ctx.getApplicationContext();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onCreate() {
|
|
||||||
super.onCreate();
|
|
||||||
buildObjGraph();
|
|
||||||
setJswordHome();
|
|
||||||
ACRA.init(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void buildObjGraph() {
|
|
||||||
mObjectGraph = ObjectGraph.create(Modules.list(this));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void inject(Object o) {
|
|
||||||
mObjectGraph.inject(o);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ObjectGraph plus(Object... modules) {
|
|
||||||
return mObjectGraph.plus(modules);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Notify jSword that it needs to store files in the Android internal directory
|
|
||||||
* NOTE: Android will uninstall these files if you uninstall MinimalBible.
|
|
||||||
*/
|
|
||||||
@SuppressWarnings("null")
|
|
||||||
private void setJswordHome() {
|
|
||||||
// We need to set the download directory for jSword to stick with
|
|
||||||
// Android.
|
|
||||||
String home = this.getFilesDir().toString();
|
|
||||||
Log.d(TAG, "Setting jsword.home to: " + home);
|
|
||||||
System.setProperty("jsword.home", home);
|
|
||||||
System.setProperty("sword.home", home);
|
|
||||||
SwordBookPath.setDownloadDir(new File(home));
|
|
||||||
Log.d(TAG, "Sword download path: " + SwordBookPath.getSwordDownloadDir());
|
|
||||||
}
|
|
||||||
}
|
|
@ -0,0 +1,22 @@
|
|||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
@ -1,20 +0,0 @@
|
|||||||
package org.bspeice.minimalbible;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* List modules to be used during testing
|
|
||||||
* Also the entry point for setting whether or not we are using testing mode
|
|
||||||
*/
|
|
||||||
public class Modules {
|
|
||||||
|
|
||||||
public static TestModules testModules = new TestModules();
|
|
||||||
|
|
||||||
private Modules() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Object[] list(MinimalBible app) {
|
|
||||||
return new Object[]{
|
|
||||||
new MinimalBibleModules(app),
|
|
||||||
testModules
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,6 +1,3 @@
|
|||||||
/**
|
|
||||||
* Created by bspeice on 9/12/14.
|
|
||||||
*/
|
|
||||||
package org.bspeice.minimalbible;
|
package org.bspeice.minimalbible;
|
||||||
|
|
||||||
import android.app.Application;
|
import android.app.Application;
|
||||||
@ -14,7 +11,7 @@ import java.io.File;
|
|||||||
import dagger.ObjectGraph;
|
import dagger.ObjectGraph;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by bspeice on 9/12/14.
|
* Set up the application!
|
||||||
*/
|
*/
|
||||||
public class MinimalBible extends Application implements Injector {
|
public class MinimalBible extends Application implements Injector {
|
||||||
private String TAG = "MinimalBible";
|
private String TAG = "MinimalBible";
|
@ -4,10 +4,11 @@ package org.bspeice.minimalbible;
|
|||||||
* List modules used by default MinimalBible configuration
|
* List modules used by default MinimalBible configuration
|
||||||
*/
|
*/
|
||||||
public class Modules {
|
public class Modules {
|
||||||
private Modules() {}
|
private Modules() {
|
||||||
|
}
|
||||||
|
|
||||||
public static Object[] list(MinimalBible app) {
|
public static Object[] list(MinimalBible app) {
|
||||||
return new Object[] {
|
return new Object[]{
|
||||||
new MinimalBibleModules(app)
|
new MinimalBibleModules(app)
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user