mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
11 lines
247 B
Java
11 lines
247 B
Java
package org.briarproject.android;
|
|
|
|
/**
|
|
* This exists so that the Application object will not necessarily be cast
|
|
* directly to the Briar application object.
|
|
*/
|
|
public interface BriarApplication {
|
|
|
|
AndroidComponent getApplicationComponent();
|
|
}
|