mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-11 11:35:07 -05:00
Fix activity manifest entry
This commit is contained in:
parent
918bab3a4e
commit
1b29330f18
@ -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>();
|
||||
|
||||
|
@ -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" >
|
||||
|
Loading…
Reference in New Issue
Block a user