summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/BuildInfo.java
diff options
context:
space:
mode:
authorNilesh Agrawal <nileshagrawal@google.com>2014-01-10 19:49:21 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-01-10 19:49:21 +0000
commit24fa33f8c7949d5e7fff4831f5903d70e1017091 (patch)
tree5cd8d42c832ce4988c618574edd358eef66ba5cb /src/com/android/launcher3/BuildInfo.java
parentb54a5989a21bef4e6bac304591ca4030bfbe709d (diff)
parent16f3ea870aac47292cd6cbe1a4b4343173097aa9 (diff)
downloadandroid_packages_apps_Trebuchet-24fa33f8c7949d5e7fff4831f5903d70e1017091.tar.gz
android_packages_apps_Trebuchet-24fa33f8c7949d5e7fff4831f5903d70e1017091.tar.bz2
android_packages_apps_Trebuchet-24fa33f8c7949d5e7fff4831f5903d70e1017091.zip
Merge "Allow DISABLE_ALL_APPS to be set using a system property." into jb-ub-now-kermit
Diffstat (limited to 'src/com/android/launcher3/BuildInfo.java')
-rw-r--r--src/com/android/launcher3/BuildInfo.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/com/android/launcher3/BuildInfo.java b/src/com/android/launcher3/BuildInfo.java
new file mode 100644
index 000000000..b49ee0d9b
--- /dev/null
+++ b/src/com/android/launcher3/BuildInfo.java
@@ -0,0 +1,32 @@
+package com.android.launcher3;
+
+import android.text.TextUtils;
+import android.util.Log;
+
+public class BuildInfo {
+ private static final boolean DBG = false;
+ private static final String TAG = "BuildInfo";
+
+ public boolean isDogfoodBuild() {
+ return false;
+ }
+
+ public static BuildInfo loadByName(String className) {
+ if (TextUtils.isEmpty(className)) return new BuildInfo();
+
+ if (DBG) Log.d(TAG, "Loading BuildInfo: " + className);
+ try {
+ Class<?> cls = Class.forName(className);
+ return (BuildInfo) cls.newInstance();
+ } catch (ClassNotFoundException e) {
+ Log.e(TAG, "Bad BuildInfo class", e);
+ } catch (InstantiationException e) {
+ Log.e(TAG, "Bad BuildInfo class", e);
+ } catch (IllegalAccessException e) {
+ Log.e(TAG, "Bad BuildInfo class", e);
+ } catch (ClassCastException e) {
+ Log.e(TAG, "Bad BuildInfo class", e);
+ }
+ return new BuildInfo();
+ }
+}