Fix activity manifest entry

This commit is contained in:
Dominik Schürmann 2013-06-17 16:17:59 +02:00
parent 918bab3a4e
commit 1b29330f18
2 changed files with 3 additions and 4 deletions

View File

@ -23,6 +23,7 @@ import org.openintents.crypto.CryptoError;
import org.openintents.crypto.CryptoServiceConnection;
import org.openintents.crypto.CryptoSignatureResult;
import org.openintents.crypto.ICryptoCallback;
import org.openintents.crypto.ICryptoService;
import org.sufficientlysecure.keychain.demo.R;
import org.sufficientlysecure.keychain.integration.Constants;
@ -50,8 +51,6 @@ public class CryptoProviderDemoActivity extends Activity {
private CryptoServiceConnection mCryptoServiceConnection;
private static final String CRYPTO_SERVICE_INTENT = "org.openintents.crypto.ICryptoService";
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
@ -142,7 +141,7 @@ public class CryptoProviderDemoActivity extends Activity {
}
private void selectCryptoProvider() {
Intent intent = new Intent(CRYPTO_SERVICE_INTENT);
Intent intent = new Intent(ICryptoService.class.getName());
final ArrayList<CryptoProviderElement> providerList = new ArrayList<CryptoProviderElement>();

View File

@ -459,7 +459,7 @@
<!-- Crypto Provider internal intents -->
<activity
android:name=".crypto_provider.CryptoActivity"
android:name=".crypto_provider.ServiceActivity"
android:exported="false"
android:label="TODO crypto activity"
android:process=":crypto" >