Android Open Source - Timetable Timetable App






From Project

Back to project page Timetable.

License

The source code is released under:

GNU General Public License

If you think the Android project Timetable listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.timetable.android;
/*from  w  w  w  .j a  v a 2  s . c o m*/
import org.acra.*;
import org.acra.annotation.ReportsCrashes;
import org.holoeverywhere.app.Application;

import android.content.Intent;


@ReportsCrashes(
        formKey = "", // This is required for backward compatibility but not used
        mode = ReportingInteractionMode.SILENT,
        resToastText = R.string.event_add_date,
        httpMethod = org.acra.sender.HttpSender.Method.PUT,
        reportType = org.acra.sender.HttpSender.Type.JSON,
        formUri = "http://timetable.iriscouch.com/acra-logs/_design/acra-storage/_update/report",
        formUriBasicAuthLogin = "acro_reporter",
        formUriBasicAuthPassword = "Melkonyan",
        logcatArguments = { "-t", "100", "-v", "time", "-s", "Timetable"}
    )

public class TimetableApp  extends Application {
  
  @Override
  public void onCreate() {
     super.onCreate();
    
    //enable debugging
    Logger.debugging = true;
      
    Logger.sendReport = false;
    
    //send broadcast, that application is started.
    sendBroadcast(new Intent(BroadcastActions.ACTION_APP_STARTED));
      
    //initialize acra
    //ACRA.init(this);
    Logger.log("TimetableApp.onCreate: Application is created. ACRA is initialized");
  }


}




Java Source Code List

com.timetable.android.AlarmSoundPreference.java
com.timetable.android.BroadcastActions.java
com.timetable.android.DeviceMuteService.java
com.timetable.android.EventBroadcastSender.java
com.timetable.android.EventChecker.java
com.timetable.android.EventController.java
com.timetable.android.EventPager.java
com.timetable.android.EventPeriod.java
com.timetable.android.EventService.java
com.timetable.android.EventViewProvider.java
com.timetable.android.EventView.java
com.timetable.android.Event.java
com.timetable.android.IllegalEventDataException.java
com.timetable.android.Logger.java
com.timetable.android.ServiceStarter.java
com.timetable.android.TimetableApp.java
com.timetable.android.TimetableDatabase.java
com.timetable.android.activities.EventAddActivity.java
com.timetable.android.activities.EventCopyActivity.java
com.timetable.android.activities.EventDayViewActivity.java
com.timetable.android.activities.EventEditActivity.java
com.timetable.android.activities.SettingsActivity.java
com.timetable.android.alarm.AlarmDialogActivity.java
com.timetable.android.alarm.AlarmService.java
com.timetable.android.alarm.EventAlarm.java
com.timetable.android.uitests.AlarmDialogActivityTestCase.java
com.timetable.android.uitests.EventAddActivityTestCase.java
com.timetable.android.uitests.TimetableUiTestCase.java
com.timetable.android.utils.DateFormatFactory.java
com.timetable.android.utils.DateUtils.java
com.timetable.android.utils.FakeTimeProvider.java
com.timetable.android.utils.SimpleTimeProvider.java
com.timetable.android.utils.TestAlarmStarter.java
com.timetable.android.utils.TimeProvider.java
com.timetable.android.utils.Utils.java