mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-23 17:22:16 -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.CryptoServiceConnection;
|
||||||
import org.openintents.crypto.CryptoSignatureResult;
|
import org.openintents.crypto.CryptoSignatureResult;
|
||||||
import org.openintents.crypto.ICryptoCallback;
|
import org.openintents.crypto.ICryptoCallback;
|
||||||
|
import org.openintents.crypto.ICryptoService;
|
||||||
import org.sufficientlysecure.keychain.demo.R;
|
import org.sufficientlysecure.keychain.demo.R;
|
||||||
import org.sufficientlysecure.keychain.integration.Constants;
|
import org.sufficientlysecure.keychain.integration.Constants;
|
||||||
|
|
||||||
@ -50,8 +51,6 @@ public class CryptoProviderDemoActivity extends Activity {
|
|||||||
|
|
||||||
private CryptoServiceConnection mCryptoServiceConnection;
|
private CryptoServiceConnection mCryptoServiceConnection;
|
||||||
|
|
||||||
private static final String CRYPTO_SERVICE_INTENT = "org.openintents.crypto.ICryptoService";
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate(Bundle icicle) {
|
public void onCreate(Bundle icicle) {
|
||||||
super.onCreate(icicle);
|
super.onCreate(icicle);
|
||||||
@ -142,7 +141,7 @@ public class CryptoProviderDemoActivity extends Activity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void selectCryptoProvider() {
|
private void selectCryptoProvider() {
|
||||||
Intent intent = new Intent(CRYPTO_SERVICE_INTENT);
|
Intent intent = new Intent(ICryptoService.class.getName());
|
||||||
|
|
||||||
final ArrayList<CryptoProviderElement> providerList = new ArrayList<CryptoProviderElement>();
|
final ArrayList<CryptoProviderElement> providerList = new ArrayList<CryptoProviderElement>();
|
||||||
|
|
||||||
|
@ -459,7 +459,7 @@
|
|||||||
<!-- Crypto Provider internal intents -->
|
<!-- Crypto Provider internal intents -->
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".crypto_provider.CryptoActivity"
|
android:name=".crypto_provider.ServiceActivity"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:label="TODO crypto activity"
|
android:label="TODO crypto activity"
|
||||||
android:process=":crypto" >
|
android:process=":crypto" >
|
||||||
|
Loading…
Reference in New Issue
Block a user