new app net.androidcomics.acv
This commit is contained in:
parent
bcaef09560
commit
016ed8cfac
|
@ -18,7 +18,8 @@ limited use for many of us.
|
||||||
Repo Type:git
|
Repo Type:git
|
||||||
Repo:https://github.com/Smerty/ham.android.git
|
Repo:https://github.com/Smerty/ham.android.git
|
||||||
|
|
||||||
Build Version:1.5.7,18,8721a4ecf8,maven=yes,bindir=target
|
Build Version:1.5.7,18,8721a4ecf8,maven=yes,bindir=target,prebuild=\
|
||||||
|
sed -i 's/true/false/g' AndroidManifest.xml
|
||||||
|
|
||||||
Update Check Mode:RepoManifest
|
Update Check Mode:RepoManifest
|
||||||
Current Version:1.5.7
|
Current Version:1.5.7
|
||||||
|
|
32
metadata/net.androidcomics.acv.txt
Normal file
32
metadata/net.androidcomics.acv.txt
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
Category:Reading
|
||||||
|
License:Apache2
|
||||||
|
Web Site:http://forums.droidcomicviewer.com
|
||||||
|
Source Code:https://github.com/robotmedia/droid-comic-viewer
|
||||||
|
Issue Tracker:https://github.com/robotmedia/droid-comic-viewer/issues
|
||||||
|
|
||||||
|
Summary:Comic and image viewer
|
||||||
|
Description:
|
||||||
|
* Opens CBZ/ZIP, ACV, (no CBR/RAR), JPEG, PNG, BMP & image folders (long tap)
|
||||||
|
* Read comics from SD card
|
||||||
|
* Left-to-right or right-to-left reading
|
||||||
|
* Use touch screen or trackball to zoom, scroll & navigate
|
||||||
|
* Next & previous screen cache
|
||||||
|
|
||||||
|
The non-free Flurry Analytics library was removed before building.
|
||||||
|
.
|
||||||
|
|
||||||
|
Repo Type:git
|
||||||
|
Repo:https://github.com/robotmedia/droid-comic-viewer.git
|
||||||
|
|
||||||
|
Build Version:1.4.1.4,46,1.4.1.4,srclibs=BillingLibrary@0153cf5b;FinfAgent@v0.1,\
|
||||||
|
scanignore=build/net.androidcomics.acv,patch=unrar.patch,prebuild=\
|
||||||
|
rm -rf src/com/github/junrar src/net/robotmedia/acv/comic/RarComic.java lib/ && \
|
||||||
|
sed -i 's@\(reference.1=\).*@\1$$BillingLibrary$$@' project.properties && \
|
||||||
|
sed -i '96d;97d;105d;112d' src/net/robotmedia/acv/Constants.java && \
|
||||||
|
echo "android.library.reference.2=$$FinfAgent$$" >> project.properties
|
||||||
|
|
||||||
|
Auto Update Mode:None
|
||||||
|
Update Check Mode:Tags
|
||||||
|
Current Version:1.4.1.4
|
||||||
|
Current Version Code:46
|
||||||
|
|
42
metadata/net.androidcomics.acv/rar.patch
Normal file
42
metadata/net.androidcomics.acv/rar.patch
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
diff --git a/src/net/robotmedia/acv/comic/Comic.java b/src/net/robotmedia/acv/comic/Comic.java
|
||||||
|
index f9b9a3d..b0f7872 100644
|
||||||
|
--- a/src/net/robotmedia/acv/comic/Comic.java
|
||||||
|
+++ b/src/net/robotmedia/acv/comic/Comic.java
|
||||||
|
@@ -81,35 +81,8 @@ public abstract class Comic {
|
||||||
|
} catch (Exception e) {
|
||||||
|
Log.w(TAG, "Failed to load zip comic", e);
|
||||||
|
}
|
||||||
|
- if (comic == null || comic.isError()) {
|
||||||
|
- try {
|
||||||
|
- comic = new RarComic(path);
|
||||||
|
- } catch (Exception e) {
|
||||||
|
- Log.w(TAG, "Failed to load zip comic as rar comic", e);
|
||||||
|
- }
|
||||||
|
- if (comic != null && !comic.isError()) {
|
||||||
|
- Log.i(TAG, "Loaded rar comic with wrong extension");
|
||||||
|
- comic.type = Constants.RAR_EXTENSION;
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- } else if (Constants.RAR_EXTENSION.equals(type) || Constants.CBR_EXTENSION.equals(type)) {
|
||||||
|
- try {
|
||||||
|
- comic = new RarComic(path);
|
||||||
|
- } catch (Exception e) {
|
||||||
|
- Log.w(TAG, "Failed to load rar comic", e);
|
||||||
|
- }
|
||||||
|
- if (comic == null || comic.isError()) {
|
||||||
|
- try {
|
||||||
|
- comic = new ZipComic(path);
|
||||||
|
- } catch (Exception e) {
|
||||||
|
- Log.w(TAG, "Failed to load rar comic as zip comic", e);
|
||||||
|
- }
|
||||||
|
- if (comic != null && !comic.isError()) {
|
||||||
|
- Log.i(TAG, "Loaded rar comic with wrong extension");
|
||||||
|
- comic.type = Constants.ZIP_EXTENSION;
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
- } else if (FileUtils.isImage(type)) {
|
||||||
|
+ }
|
||||||
|
+ else if (FileUtils.isImage(type)) {
|
||||||
|
comic = new FileComic(path);
|
||||||
|
} else if (Constants.ACV_EXTENSION.equals(type)) {
|
||||||
|
comic = new ACVComic(path);
|
|
@ -21,8 +21,9 @@ cp ../JakeWharton-ActionBarSherlock-88fc341/library/libs/android-support-v4.jar
|
||||||
printf "%s\n" "/^import\ android.widget.BaseAdapter;/d" "/^import\ java.util.List;/x" "w" \
|
printf "%s\n" "/^import\ android.widget.BaseAdapter;/d" "/^import\ java.util.List;/x" "w" \
|
||||||
| ed -s src/org/sickstache/app/ExpandableLoadingListFragment.java
|
| ed -s src/org/sickstache/app/ExpandableLoadingListFragment.java
|
||||||
#doesn't work to set ANDROID_HOME
|
#doesn't work to set ANDROID_HOME
|
||||||
Build Version:2.2.2,43,!crashy f0939ad5e5,subdir=app,maven=yes,bindir=app/target,prebuild=\
|
Build Version:2.2.2,43,!broken f0939ad5e5,subdir=app,maven=yes,bindir=app/target,prebuild=\
|
||||||
sed -i 's@${ANDROID_HOME}@$$SDK$$@g' ../pom.xml
|
sed -i 's@${ANDROID_HOME}@$$SDK$$@g' ../pom.xml
|
||||||
|
#Build Version:2.2.3,44,!no source code as of 20/04
|
||||||
|
|
||||||
Auto Update Mode:None
|
Auto Update Mode:None
|
||||||
Update Check Mode:Market
|
Update Check Mode:Market
|
||||||
|
|
Loading…
Reference in a new issue