2017-01-15 12:43:26 +01:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.externalevents;
|
2017-01-14 00:26:21 +01:00
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.PersistableBundle;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
2017-01-15 12:43:26 +01:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.activities.GBActivity;
|
2017-01-14 00:26:21 +01:00
|
|
|
|
|
|
|
public class WeatherNotificationConfig extends GBActivity {
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
|
|
|
|
super.onCreate(savedInstanceState, persistentState);
|
|
|
|
setContentView(R.layout.activity_weather_notification);
|
|
|
|
}
|
|
|
|
}
|