Fix isProVersion() returning always false
This commit is contained in:
parent
05558c1799
commit
344404c03f
3 changed files with 10 additions and 5 deletions
|
|
@ -25,6 +25,12 @@
|
|||
|
||||
<p>You can view the changelog dialog again at any time from the <i>about</i> section.</p>
|
||||
|
||||
<h3>Version 0.16.0 BETA 2</h3>
|
||||
|
||||
<ol>
|
||||
<li><b>FIX:</b> Phonograph Pro license error</li>
|
||||
</ol>
|
||||
|
||||
<h3>Version 0.16.0 BETA 1</h3>
|
||||
|
||||
<ol>
|
||||
|
|
@ -40,7 +46,6 @@
|
|||
<li><b>NEW:</b> Synchronized lyrics support</li>
|
||||
<li><b>NEW:</b> New widgets</li>
|
||||
<li><b>FIX:</b> Many bug fixes</li>
|
||||
|
||||
</ol>
|
||||
|
||||
<h3>Version 0.15.0</h3>
|
||||
|
|
|
|||
|
|
@ -63,7 +63,7 @@ public class App extends Application {
|
|||
}
|
||||
|
||||
public static boolean isProVersion() {
|
||||
return false; //BuildConfig.DEBUG || app.billingProcessor.isPurchased(PRO_VERSION_PRODUCT_ID);
|
||||
return BuildConfig.DEBUG || app.billingProcessor.isPurchased(PRO_VERSION_PRODUCT_ID);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue