Commit ff1d0861 authored by DEEPAK VERMA's avatar DEEPAK VERMA

Send Reminder Feature - Initial commit on branch send_reminder_feature

parent d8480377
<!-- <?xml version="1.0" encoding="utf-8"?>
Copyright 2015 Blanyal D'Souza.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="com.blanyal.remindme" > package="com.blanyal.remindme">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application <application
android:allowBackup="true" android:allowBackup="true"
tools:replace="android:icon,android:theme"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@style/AppTheme" > android:theme="@style/AppTheme"
tools:replace="android:icon,android:theme">
<activity android:name=".SendReminder"></activity>
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"
android:label="@string/app_name" > android:label="@string/app_name">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity
android:name=".ReminderAddActivity"
android:label="@string/title_activity_add_reminder" />
<activity
android:name=".ReminderEditActivity"
android:label="@string/title_activity_edit_reminder" />
<activity
android:name=".LicencesActivity"
android:label="@string/title_activity_licenses" />
<activity android:name=".ReminderAddActivity" <receiver android:name=".AlarmReceiver" />
android:label="@string/title_activity_add_reminder"/>
<activity android:name=".ReminderEditActivity"
android:label="@string/title_activity_edit_reminder"/>
<activity android:name=".LicencesActivity"
android:label="@string/title_activity_licenses"/>
<receiver android:name=".AlarmReceiver"/>
<receiver android:name=".BootReceiver"> <receiver android:name=".BootReceiver">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/> <action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter> </intent-filter>
</receiver> </receiver>
<service <service
android:name=".AlarmService" android:name=".AlarmService"
android:enabled="true" /> android:enabled="true" />
</application> </application>
</manifest> </manifest>
\ No newline at end of file
package com.blanyal.remindme;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class SendReminder extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
}
...@@ -30,10 +30,10 @@ ...@@ -30,10 +30,10 @@
<string name="repeat_off">Off</string> <string name="repeat_off">Off</string>
<string name="repeat_no">Repetition Interval </string> <string name="repeat_no">Repetition Interval </string>
<string name="repeat_type">Type of Repetitions</string> <string name="repeat_type">Type of Repetitions</string>
<string name="action_discard_reminder">Discard Reminder</string> <string name="action_discard_reminder">Discard Reminder</string>
<string name="action_save_reminder">Save Reminder</string> <string name="action_save_reminder">Save Reminder</string>
<string name="no_reminders">Click on the plus button below to begin creating your reminders!</string> <string name="no_reminders">Click on the plus button below to begin creating your reminders!</string>
<string name="licenses"><BIG><b>NOTICES FOR LIBRARIES:</b></BIG> \n\n <b> 1) MaterialDateTimePicker <string name="licenses"><BIG><b>NOTICES FOR LIBRARIES:</b></BIG> \n\n <b> 1) MaterialDateTimePicker
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment