Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Talking Reminder
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
RAUSHAN RAJ
Talking Reminder
Commits
ff1d0861
Commit
ff1d0861
authored
Nov 02, 2019
by
DEEPAK VERMA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Send Reminder Feature - Initial commit on branch send_reminder_feature
parent
d8480377
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
38 deletions
+35
-38
app/src/main/AndroidManifest.xml
app/src/main/AndroidManifest.xml
+20
-36
app/src/main/java/com/blanyal/remindme/SendReminder.java
app/src/main/java/com/blanyal/remindme/SendReminder.java
+13
-0
app/src/main/res/values/strings.xml
app/src/main/res/values/strings.xml
+2
-2
No files found.
app/src/main/AndroidManifest.xml
View file @
ff1d0861
<!--
<?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
app/src/main/java/com/blanyal/remindme/SendReminder.java
0 → 100644
View file @
ff1d0861
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
);
}
}
app/src/main/res/values/strings.xml
View file @
ff1d0861
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment