A material designed local music player for Android.
- Fork the original Phonograph repo
- Go to
/app/src/main/java/com/kabouzeid/gramophone/App.java
- Change the contents of this method:
public static boolean isProVersion() {
return BuildConfig.DEBUG ||
app.billingProcessor.isPurchased(PRO_VERSION_PRODUCT_ID);
}
To this:
public static boolean isProVersion() {
return true;
}