mirror of
https://gitlab.com/neothefox/LayTray
synced 2026-03-23 21:54:54 +03:00
Added "about" page Now the Notification can be configured Now the user would be notified if the service is disabled
14 lines
309 B
Java
14 lines
309 B
Java
package space.neothefox.laytray;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
|
|
public class AboutActivity extends Activity {
|
|
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_about);
|
|
}
|
|
}
|