Add self-updater for github builds

This commit is contained in:
Grishka
2022-10-31 09:26:17 +03:00
parent 1fa8a9e858
commit e381de812c
19 changed files with 774 additions and 17 deletions

View File

@@ -0,0 +1,11 @@
package org.joinmastodon.android.events;
import org.joinmastodon.android.updater.GithubSelfUpdater;
public class SelfUpdateStateChangedEvent{
public final GithubSelfUpdater.UpdateState state;
public SelfUpdateStateChangedEvent(GithubSelfUpdater.UpdateState state){
this.state=state;
}
}