mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
made the author creation single-threaded again in the LifecycleManager, removed redundant code
15 lines
261 B
Java
15 lines
261 B
Java
package org.briarproject.android.controller;
|
|
|
|
import android.content.Context;
|
|
|
|
public interface ConfigController {
|
|
|
|
String getEncryptedDatabaseKey();
|
|
|
|
void storeEncryptedDatabaseKey(String hex);
|
|
|
|
void deleteAccount(Context ctx);
|
|
|
|
boolean accountExists();
|
|
}
|