development
修订版 | 181414a48c4c042f8795f039c3d95c2eeba2349e (tree) |
---|---|
时间 | 2011-01-14 14:05:24 |
作者 | Wink Saville <wink@goog...> |
Commiter | Wink Saville |
Fix build.
Commented out the offending lines and add a RuntimeException to
fix the build.
Change-Id: Ide2a7897d639edb1cd28401566558a90235c250b
@@ -73,7 +73,8 @@ public class ForegroundDispatch extends Activity { | ||
73 | 73 | @Override |
74 | 74 | public void onResume() { |
75 | 75 | super.onResume(); |
76 | - mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters); | |
76 | + //mAdapter.enableForegroundDispatch(this, mPendingIntent, mFilters); | |
77 | + throw new RuntimeException("onResume not implemented to fix build"); | |
77 | 78 | } |
78 | 79 | |
79 | 80 | @Override |
@@ -85,6 +86,7 @@ public class ForegroundDispatch extends Activity { | ||
85 | 86 | @Override |
86 | 87 | public void onPause() { |
87 | 88 | super.onPause(); |
88 | - mAdapter.disableForegroundDispatch(this); | |
89 | + //mAdapter.disableForegroundDispatch(this); | |
90 | + throw new RuntimeException("onPause not implemented to fix build"); | |
89 | 91 | } |
90 | 92 | } |