Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Latest commit

 

History

History
22 lines (20 loc) · 705 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 705 Bytes

Phonograph-Pro

License: GPL v3

A material designed local music player for Android.

Screenshots

Do it yourself

  1. Fork the original Phonograph repo
  2. Go to /app/src/main/java/com/kabouzeid/gramophone/App.java
  3. 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;
}