Changing the dogfood check to a static boolean to better handle proguard optimizations

Change-Id: I892b88ce1a007fafc23a73ad4193c5c4aa411d1b
This commit is contained in:
Sunny Goyal
2015-07-16 14:09:05 -07:00
parent 14031ebb81
commit 6c56c68555
13 changed files with 29 additions and 49 deletions
+3 -1
View File
@@ -25,6 +25,8 @@ import android.util.Log;
import android.view.View;
import android.view.ViewParent;
import com.android.launcher3.config.ProviderConfig;
public class Stats {
/**
@@ -71,7 +73,7 @@ public class Stats {
if (provider != null) {
provider.fillInLaunchSourceData(sourceData);
} else if (LauncherAppState.isDogfoodBuild()) {
} else if (ProviderConfig.IS_DOGFOOD_BUILD) {
throw new RuntimeException("Expected LaunchSourceProvider");
}
}