Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build fixes #409

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import java.util.*;

import org.fbreader.util.NaturalOrderComparator;
import group.pals.android.lib.ui.filechooser.utils.NaturalOrderComparator;
import org.fbreader.util.Pair;

import org.geometerplus.zlibrary.core.filesystem.ZLFile;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import android.annotation.TargetApi;
import android.os.Build;

import org.fbreader.util.NaturalOrderComparator;
import group.pals.android.lib.ui.filechooser.utils.NaturalOrderComparator;

public abstract class TitledEntity<T extends TitledEntity<T>> implements Comparable<T> {
private static final NaturalOrderComparator ourComparator = new NaturalOrderComparator();
Expand Down
2 changes: 1 addition & 1 deletion third-party/AmbilWarna/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />
<property file="../../local.properties" />

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
Expand Down
2 changes: 1 addition & 1 deletion third-party/AmbilWarna/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ android.library=true
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-11
target=android-19
2 changes: 1 addition & 1 deletion third-party/SuperToasts/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />
<property file="../../local.properties" />

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
Expand Down
2 changes: 1 addition & 1 deletion third-party/android-filechooser/code/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />
<property file="../../../local.properties" />

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
Expand Down
2 changes: 1 addition & 1 deletion third-party/android-filechooser/code/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
# project structure.

# Project target.
target=android-14
target=android-19
android.library=true
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import java.util.Comparator;

import org.fbreader.util.NaturalOrderComparator;
import group.pals.android.lib.ui.filechooser.utils.NaturalOrderComparator;

/**
* {@link IFile} comparator.<br>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.fbreader.util;
package group.pals.android.lib.ui.filechooser.utils;

/*
NaturalOrderComparator.java -- Perform 'natural order' comparisons of strings in Java.
Expand Down
13 changes: 12 additions & 1 deletion third-party/drag-sort-listview/library/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- The local.properties file is created and updated by the 'android' tool.
It contains the path to the SDK. It should *NOT* be checked into
Version Control Systems. -->
<property file="local.properties" />
<property file="../../../local.properties" />

<!-- The ant.properties file can be created by you. It is only edited by the
'android' tool to add properties to it.
Expand Down Expand Up @@ -78,6 +78,17 @@
in order to avoid having your file be overridden by tools such as "android update project"
-->
<!-- version-tag: 1 -->

<!-- because of this: https://code.google.com/p/android/issues/detail?id=33194, this target is needed to use jar.libs.dir -->
<target name="-pre-compile">
<echo>Custom pre-compile!</echo>
<path id="project.all.jars.path">
<fileset dir="${jar.libs.dir}">
<include name="*.jar"/>
</fileset>
</path>
</target>

<import file="${sdk.dir}/tools/ant/build.xml" />

</project>
3 changes: 2 additions & 1 deletion third-party/drag-sort-listview/library/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@

android.library=true
# Project target.
target=android-5
target=android-19
jar.libs.dir=../../../libs