[sword-svn] r3682 - trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android
scribe at crosswire.org
scribe at crosswire.org
Tue Jan 28 16:50:24 MST 2020
Author: scribe
Date: 2020-01-28 16:50:23 -0700 (Tue, 28 Jan 2020)
New Revision: 3682
Added:
trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java
Log:
added Android subclass of java-jni SWMgr.java
Added: trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java
===================================================================
--- trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java (rev 0)
+++ trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java 2020-01-28 23:50:23 UTC (rev 3682)
@@ -0,0 +1,45 @@
+/******************************************************************************
+ *
+ * AndroidMgr.java -
+ *
+ * $Id: SWMgr.java 2833 2013-06-29 06:40:28Z chrislit $
+ *
+ * Copyright 2009-2013 CrossWire Bible Society (http://www.crosswire.org)
+ * CrossWire Bible Society
+ * P. O. Box 2528
+ * Tempe, AZ 85280-2528
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ */
+
+package org.crosswire.android.sword;
+
+import android.app.Application;
+import android.content.Context;
+
+public class AndroidMgr extends SWMgr {
+
+ private Application app;
+
+ public AndroidMgr(Application app) {
+ super(false);
+ this.app = app;
+ reInit();
+ }
+
+ @Override
+ public String getStorageBasePath() {
+ Context context = app.getApplicationContext();
+ return context.getFilesDir().getAbsolutePath();
+ }
+}
+
+
More information about the sword-cvs
mailing list