Added Settings and About pages (still need translation)

This commit is contained in:
dosse91
2019-08-31 10:11:53 +02:00
parent 6783c2dcd6
commit ff8cf52c26
18 changed files with 1057 additions and 50 deletions
@@ -18,4 +18,10 @@ public class Starter extends BroadcastReceiver {
public static final void startPodsService(Context context){
context.startService(new Intent(context, PodsService.class));
}
public static final void restartPodsService(Context context){
context.stopService(new Intent(context, PodsService.class));
try{Thread.sleep(500);}catch(Throwable t){}
context.startService(new Intent(context, PodsService.class));
}
}