mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
13 lines
215 B
Java
13 lines
215 B
Java
package org.briarproject.android.controller;
|
|
|
|
import android.content.Context;
|
|
|
|
public interface ConfigController {
|
|
|
|
String getEncryptedDatabaseKey();
|
|
|
|
void deleteAccount(Context ctx);
|
|
|
|
boolean accountExists();
|
|
}
|