Use Extension.packageName instead of Extension.PACKAGE_NAME

This commit is contained in:
Joshua Granick
2014-04-16 14:27:12 -07:00
parent 05d54940e5
commit 5cb366d578

View File

@@ -18,8 +18,8 @@ public class Extension {
public static Activity mainActivity;
public static Context mainContext;
public static View mainView;
public static String packageName;
public static String PACKAGE_NAME;
/**
* Called when an activity you launched exits, giving you the requestCode
@@ -50,6 +50,29 @@ public class Extension {
}
/**
* Called when the overall system is running low on memory,
* and actively running processes should trim their memory usage.
* This is a backwards compatibility method as it is called at the same time as
* onTrimMemory(TRIM_MEMORY_COMPLETE).
*/
public void onLowMemory () {
}
/**
* Called when the a new Intent is received
*/
public void onNewIntent (Intent intent) {
}
@@ -109,19 +132,6 @@ public class Extension {
}
/**
* Called when the overall system is running low on memory,
* and actively running processes should trim their memory usage.
* This is a backwards compatibility method as it is called at the same time as
* onTrimMemory(TRIM_MEMORY_COMPLETE).
*/
public void onLowMemory () {
}
/**
* Called when the operating system has determined that it is a
* good time for a process to trim unneeded memory from its process.
@@ -134,12 +144,5 @@ public class Extension {
}
/**
* Called when the a new Intent is received
*/
public void onNewIntent (Intent intent) {
}
}
}