1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2025-03-11 14:44:54 +00:00

0.95 stable

This commit is contained in:
M66B 2016-02-25 12:36:04 +01:00
parent 2966380108
commit 89bc9a7999
3 changed files with 4 additions and 3 deletions

View file

@ -100,6 +100,7 @@
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifests" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/objectFiles" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/pre-dexed" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/proguard-rules" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/res" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/restart-dex" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />

View file

@ -9,8 +9,8 @@ model {
applicationId "eu.faircode.netguard"
minSdkVersion.apiLevel 14
targetSdkVersion.apiLevel 23
versionCode = 2016022501
versionName = "0.94"
versionCode = 2016022502
versionName = "0.95"
archivesBaseName = "NetGuard-v$versionName-$versionCode"
buildConfigFields {

View file

@ -271,7 +271,7 @@ public class ActivityPro extends AppCompatActivity {
tvAll.setVisibility(IAB.isPurchased(SKU_PRO1, this) ? View.VISIBLE : View.GONE);
llChallenge.setVisibility(
IAB.isPurchased(SKU_DONATION, this) || !Util.isPlayStoreInstall(this)
IAB.isPurchased(SKU_DONATION, this) || Util.isPlayStoreInstall(this)
? View.GONE : View.VISIBLE);
}
}