Android Donations Lib supports donations by Google Play Store, Flattr, PayPal, and Bitcoin.
It is used in my projects AdAway, FasterGPS, and NTP-Sync.
NOTE: Google mailed me to remove PayPal donation capability when publishing on Google Play! Thus, you should build "product flavors" defined by the example: One version with Google Play donation capability and one with Paypal, Flattr, and Bitcoin!
Add this to your build.gradle:
repositories {
jcenter()
}
dependencies {
compile 'org.sufficientlysecure:donations:2.3'
}
- Have Android SDK "tools", "platform-tools", and "build-tools" directories in your PATH (http://developer.android.com/sdk/index.html)
- Export ANDROID_HOME pointing to your Android SDK
- Download Android Support Repository, and Google Repository using Android SDK Manager
- Execute
./gradlew build
- The ExampleApp depends on "libraries/Donations" and has two product flavors defined in its gradle configuration.
- See ExampleApp/build.gradle how to build different product flavors. The build script adds
DONATIONS_GOOGLE
to the auto generated BuildConfig.java. - See DonationsActivity.java how to instantiate the Fragment based on
DONATIONS_GOOGLE
. - When publishing the app you must create managed in-app products for your app in the Google Play Store that matches the ones you defined in
private static final String[] GOOGLE_CATALOG
- Add
<uses-permission android:name="android.permission.INTERNET" />
to product flavors that use Flattr - Add
<uses-permission android:name="com.android.vending.BILLING" />
to product flavors that use Google Play In-app billing
- Publish to JCenter
- Updated build files
- Added bitcoin support (thanks to Oleg Vaskevich)
- Permissions are now defined per product flavor, they were removed from library's AndroidManifest
- Now uses Gradle Build System (http://tools.android.com/tech-docs/new-build-system)
- No xml configuration needed anymore!
- Fragment can be instantiated and used in any Activity.
- You can build "product flavors" defined by the ExampleApp: One version with Google Play Donation capability and one with Paypal and Flattr! (Google mailed me to remove PayPal donation capability when publishing on Google Play!)
Fork Android Donations Lib and do a pull request. I will merge your changes back into the main project.