[sword-svn] r3683 - in trunk/bindings: Android/SWORD/app/src/main/java/org/crosswire/android/sword cordova/cordova-plugin-crosswire-sword/src/android
scribe at crosswire.org
scribe at crosswire.org
Tue Jan 28 16:56:06 MST 2020
Author: scribe
Date: 2020-01-28 16:56:06 -0700 (Tue, 28 Jan 2020)
New Revision: 3683
Added:
trunk/bindings/Android/SWORD/app/src/main/java/org/crosswire/android/sword/AndroidMgr.java
Removed:
trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java
Log:
moved AndroidMgr so it is available to other Android apps beside Cordova bindings
Copied: trunk/bindings/Android/SWORD/app/src/main/java/org/crosswire/android/sword/AndroidMgr.java (from rev 3682, trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java)
===================================================================
--- trunk/bindings/Android/SWORD/app/src/main/java/org/crosswire/android/sword/AndroidMgr.java (rev 0)
+++ trunk/bindings/Android/SWORD/app/src/main/java/org/crosswire/android/sword/AndroidMgr.java 2020-01-28 23:56:06 UTC (rev 3683)
@@ -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();
+ }
+}
+
+
Deleted: trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java
===================================================================
--- trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java 2020-01-28 23:50:23 UTC (rev 3682)
+++ trunk/bindings/cordova/cordova-plugin-crosswire-sword/src/android/AndroidMgr.java 2020-01-28 23:56:06 UTC (rev 3683)
@@ -1,45 +0,0 @@
-/******************************************************************************
- *
- * 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