This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<remote name="proprietary" fetch="git://github.com/koush/" /> | |
<proejct path="vendor/akm" name="proprietary_vendor_akm" remote="proprietary" /> | |
<project path="vendor/bn" name="proprietary_vendor_bn" remote="proprietary" /> | |
<project path="vendor/commtiva" name="proprietary_vendor_commtiva" remote="proprietary" /> | |
<project path="vendor/broadcom" name="proprietary_vendor_broadcom" remote="proprietary" /> | |
<project path="vendor/geeksphone" name="proprietary_vendor_geeksphone" remote="proprietary" /> | |
<project path="vendor/google" name="proprietary_vendor_google" remote="proprietary" revision="gh-pages" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
packman.getPackageInfo("com.twitter.android", 0); | |
builder.setNeutralButton(R.string.follow_koush, new OnClickListener() { | |
public void onClick(DialogInterface dialog, int which) { | |
// this is the intent you actually want. | |
// grabbed this by hooking a debugger up to twitter and debugging into android source. | |
Intent i = new Intent(); | |
i.setClassName("com.twitter.android", "com.twitter.android.ProfileActivity"); | |
i.putExtra("screen_name", "koush"); | |
try { |