Skip to content

Commit 7f76a8d

Browse files
Merge pull request #357 from friederbluemle/update-project
Minor file cleanups + remove support binary
2 parents 93191c9 + 154e9f7 commit 7f76a8d

37 files changed

+29
-29
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ Before raising a new issue, please check the following places for an answer to y
77

88
If you get stuck adding the view in your project or need help extending it for your requirements, please consider asking for help on StackOverflow instead of raising an issue. This issue tracker is intended for reporting bugs and raising feature requests.
99

10-
Thanks for reading!
10+
Thanks for reading!

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939

4040
dependencies {
4141
compile fileTree(dir: 'libs', include: '*.jar')
42-
compile 'com.android.support:support-annotations:25.3.0'
42+
compile 'com.android.support:support-annotations:25.3.1'
4343
}
4444

4545
apply from: rootProject.file('release.gradle')

library/proguard-rules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
-keep class com.davemorrissey.labs.subscaleview.** { *; }
1+
-keep class com.davemorrissey.labs.subscaleview.** { *; }

library/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212

1313
# Project target.
1414
target=android-19
15-
android.library=true
15+
android.library=true

library/res/values/attrs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ limitations under the License.
2525
<attr name="tileBackgroundColor" format="color"/>
2626
</declare-styleable>
2727

28-
</resources>
28+
</resources>

library/src/com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ private boolean onTouchEventInternal(@NonNull MotionEvent event) {
828828
maxTouchCount = 0;
829829
handler.removeMessages(MESSAGE_LONG_CLICK);
830830
requestDisallowInterceptTouchEvent(false);
831-
}
831+
}
832832
if (!panEnabled) {
833833
vTranslate.x = vTranslateStart.x;
834834
vTranslate.y = vTranslateStart.y;

sample/assets/ness.jpg

100755100644
File mode changed.

sample/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ android {
4040
dependencies {
4141
compile fileTree(dir: 'libs', include: '*.jar')
4242
compile project(':library')
43+
compile 'com.android.support:support-v4:25.3.1'
4344
compile 'rapid.decoder:library:0.3.0'
4445
compile 'rapid.decoder:jpeg-decoder:0.3.0'
4546
compile 'rapid.decoder:png-decoder:0.3.0'

sample/libs/android-support-v4.jar

-607 KB
Binary file not shown.

sample/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212

1313
# Project target.
1414
target=android-19
15-
android.library.reference.1=../library
15+
android.library.reference.1=../library

0 commit comments

Comments
 (0)