diff --git a/README.md b/README.md
index ec1d2682..c9dda75d 100644
--- a/README.md
+++ b/README.md
@@ -3,16 +3,22 @@ FFmpegMediaPlayer
View the project page here.
-Donate
+Donations
------------
Donations can be made via PayPal:
-
-
-
+**This project needs you!** If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, **feel free to donate**. Your donation is highly appreciated (and I love food and coffee). Thank you!
-
+**PayPal**
+
+- [**Donate 5 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): Thank's for creating this project, here's a coffee for you!
+- [**Donate 10 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): Wow, I am stunned. Let me take you to the movies!
+- [**Donate 15 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): I really appreciate your work, let's grab some lunch!
+- [**Donate 25 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): That's some awesome stuff you did right there, dinner is on me!
+- [**Donate 50 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): I really really want to support this project, great job!
+- [**Donate 100 $**] (https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY): You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
+- Of course, you can also [**choose what you want to donate**](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2BDTFVEW9LFZY), all donations are awesome!
Overview
--------
@@ -20,6 +26,8 @@ Overview
FFmpegMediaPlayer is a reimplementation of Android's MediaPlayer class. The FFmpegMediaPlayer class provides a unified interface for playing audio files and streams.
Key Features:
+* ARM, ARMv7, x86, x86_64, MIPS and ARM_64 support
+
* Support for additional formats and protocols not provided by Android's MediaPlayer class
Supported protocols:
@@ -37,12 +45,12 @@ Using FMP in your application (Android Studio)
Add the following maven dependency to your project's `build.gradle` file:
dependencies {
- compile 'com.github.wseemann:FFmpegMediaPlayer:1.0.3'
+ compile 'com.github.wseemann:FFmpegMediaPlayer:1.0.4'
}
or, if your application supports individual architectures extract the appropriate AAR file into you projects "libs" folder:
-[Prebuilt AARs] (https://github.com/wseemann/FFmpegMediaPlayer/releases/download/v1.0.3/prebuilt-aars.zip)
+[Prebuilt AARs] (https://github.com/wseemann/FFmpegMediaPlayer/releases/download/v1.0.4/prebuilt-aars.zip)
(with HTTPS support)
@@ -171,7 +179,7 @@ License
```
FFmpegMediaPlayer: A unified interface for playing audio files and streams.
-Copyright 2016s William Seemann
+Copyright 2016 William Seemann
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/gradle/fmp-library/gradle.properties b/gradle/fmp-library/gradle.properties
index 1369ce20..f9ce8a94 100644
--- a/gradle/fmp-library/gradle.properties
+++ b/gradle/fmp-library/gradle.properties
@@ -20,8 +20,8 @@
POM_NAME=FFmpegMediaPlayer
POM_ARTIFACT_ID=FFmpegMediaPlayer
POM_PACKAGING=aar
-VERSION_NAME=1.0.3
-VERSION_CODE=4
+VERSION_NAME=1.0.4
+VERSION_CODE=5
GROUP=com.github.wseemann
POM_DESCRIPTION=Foo library
diff --git a/gradle/fmp-library/library/build.gradle b/gradle/fmp-library/library/build.gradle
index 820ed39a..e6086c5c 100644
--- a/gradle/fmp-library/library/build.gradle
+++ b/gradle/fmp-library/library/build.gradle
@@ -30,8 +30,8 @@ android {
defaultConfig {
minSdkVersion 12
targetSdkVersion 25
- versionCode 4
- versionName "1.0.3"
+ versionCode 5
+ versionName "1.0.4"
}
buildTypes {
release {
diff --git a/gradle/fmp-library/library/src/main/jni/Application.mk b/gradle/fmp-library/library/src/main/jni/Application.mk
index d4fc6568..e6d98dbb 100644
--- a/gradle/fmp-library/library/src/main/jni/Application.mk
+++ b/gradle/fmp-library/library/src/main/jni/Application.mk
@@ -1,4 +1,3 @@
# build with android-ndk-r10e
-APP_ABI := armeabi armeabi-v7a x86 mips x86_64
-# arm64-v8a
\ No newline at end of file
+APP_ABI := armeabi armeabi-v7a x86 mips x86_64 arm64-v8a
\ No newline at end of file
diff --git a/gradle/fmp-library/local.properties b/gradle/fmp-library/local.properties
index 616e6a4d..e3c335c5 100644
--- a/gradle/fmp-library/local.properties
+++ b/gradle/fmp-library/local.properties
@@ -10,4 +10,4 @@
#Sun Oct 18 19:45:39 CDT 2015
libs.dir=/Users/seemann/Desktop
sdk.dir=/Users/wseemann/Library/Android/sdk
-ndk.dir=/Users/wseemann/Android/android-ndk-r10d
\ No newline at end of file
+ndk.dir=/Users/wseemann/Android/android-ndk-r11c
\ No newline at end of file