mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
Updated libraries
This commit is contained in:
@@ -112,22 +112,22 @@ repositories {
|
||||
dependencies {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
def appcompat_version = "1.0.2"
|
||||
def appcompat_version = "1.1.0-beta01"
|
||||
def recyclerview_version = "1.1.0-alpha06"
|
||||
def coordinatorlayout_version = "1.0.0"
|
||||
def constraintlayout_version = "1.1.3"
|
||||
def coordinatorlayout_version = "1.1.0-beta01"
|
||||
def constraintlayout_version = "2.0.0-beta1"
|
||||
def material_version = "1.1.0-alpha07"
|
||||
def browser_version = "1.0.0"
|
||||
def lifecycle_version = "2.0.0"
|
||||
def lifecycle_version = "2.1.0-beta01"
|
||||
def room_version = "2.1.0-rc01"
|
||||
def paging_version = "2.1.0"
|
||||
def preference_version = "1.0.0"
|
||||
def preference_version = "1.1.0-beta01"
|
||||
def work_version = "2.1.0-alpha03"
|
||||
def exif_version = "1.0.0"
|
||||
def exif_version = "1.1.0-alpha01"
|
||||
def billingclient_version = "2.0.1"
|
||||
def javamail_version = "1.6.3"
|
||||
def jsoup_version = "1.11.3"
|
||||
def dnsjava_version = "2.1.8"
|
||||
def jsoup_version = "1.12.1"
|
||||
def dnsjava_version = "2.1.9"
|
||||
def openpgp_version = "12.0"
|
||||
def requery_version = "3.28.0"
|
||||
def badge_version = "1.1.22"
|
||||
|
||||
@@ -62,15 +62,15 @@ public class TwoStateOwner implements LifecycleOwner {
|
||||
}
|
||||
});
|
||||
|
||||
registry.markState(Lifecycle.State.CREATED);
|
||||
registry.setCurrentState(Lifecycle.State.CREATED);
|
||||
}
|
||||
|
||||
void start() {
|
||||
registry.markState(Lifecycle.State.STARTED);
|
||||
registry.setCurrentState(Lifecycle.State.STARTED);
|
||||
}
|
||||
|
||||
void stop() {
|
||||
registry.markState(Lifecycle.State.CREATED);
|
||||
registry.setCurrentState(Lifecycle.State.CREATED);
|
||||
}
|
||||
|
||||
void restart() {
|
||||
@@ -86,9 +86,9 @@ public class TwoStateOwner implements LifecycleOwner {
|
||||
void destroy() {
|
||||
Lifecycle.State state = registry.getCurrentState();
|
||||
if (!state.equals(Lifecycle.State.CREATED))
|
||||
registry.markState(Lifecycle.State.CREATED);
|
||||
registry.setCurrentState(Lifecycle.State.CREATED);
|
||||
if (!state.equals(Lifecycle.State.DESTROYED))
|
||||
registry.markState(Lifecycle.State.DESTROYED);
|
||||
registry.setCurrentState(Lifecycle.State.DESTROYED);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
|
||||
Reference in New Issue
Block a user