1
0
mirror of https://gitlab.com/neothefox/LayTray synced 2026-03-23 21:54:54 +03:00
LayTray/app/src/main/java/space/neothefox/laytray/AboutActivity.java
NeoTheFox 3117a0dff5 Added settings
Added "about" page
Now the Notification can be configured
Now the user would be notified if the service is disabled
2018-07-06 15:52:53 +03:00

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);
}
}