mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
16 lines
498 B
Java
16 lines
498 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.activities;
|
||
|
|
||
|
import android.os.Bundle;
|
||
|
import android.os.PersistableBundle;
|
||
|
import android.widget.TextView;
|
||
|
|
||
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
||
|
|
||
|
public class WeatherNotificationConfig extends GBActivity {
|
||
|
@Override
|
||
|
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|
||
|
super.onCreate(savedInstanceState, persistentState);
|
||
|
setContentView(R.layout.activity_weather_notification);
|
||
|
}
|
||
|
}
|