Faq
Some link inserted in my xml file don't work
Some link with strange caracters don't work in xml, you must surround the link by CDATA tag like
<DonateUrl><![CDATA[http://forum.xda-developers.com/donatetome.php?u=xxxxxx]]></DonateUrl>
How can i call you app from my app?
Simple, insert this code if you use Update me
Intent intentDeviceTest = new Intent("android.intent.action.MAIN");
intentDeviceTest.setComponent(new ComponentName("com.acquariusoft.UpdateMe","com.acquariusoft.UpdateMe.UpdateMeActivity"));
startActivity(intentDeviceTest);
And if you use Update me Smartphone
Intent intentDeviceTest = new Intent("android.intent.action.MAIN");
intentDeviceTest.setComponent(new ComponentName("com.acquariusoft.UpdateMeSmartphone","com.acquariusoft.UpdateMeSmartphone.UpdateMeActivityOld"));
startActivity(intentDeviceTest);