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
79cc996e
Commit
79cc996e
authored
Nov 06, 2019
by
DEEPAK VERMA
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleanup
parent
65475998
Changes
21
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
386 additions
and
288 deletions
+386
-288
app/src/main/AndroidManifest.xml
app/src/main/AndroidManifest.xml
+10
-10
app/src/main/java/com/blanyal/remindme/LicencesActivity.java
app/src/main/java/com/blanyal/remindme/LicencesActivity.java
+0
-66
app/src/main/java/com/sudogeeks/talking_reminder/AlarmReceiver.java
...in/java/com/sudogeeks/talking_reminder/AlarmReceiver.java
+29
-52
app/src/main/java/com/sudogeeks/talking_reminder/BootReceiver.java
...ain/java/com/sudogeeks/talking_reminder/BootReceiver.java
+2
-18
app/src/main/java/com/sudogeeks/talking_reminder/DateTimeSorter.java
...n/java/com/sudogeeks/talking_reminder/DateTimeSorter.java
+1
-1
app/src/main/java/com/sudogeeks/talking_reminder/MainActivity.java
...ain/java/com/sudogeeks/talking_reminder/MainActivity.java
+3
-18
app/src/main/java/com/sudogeeks/talking_reminder/NotificationHelper.java
...va/com/sudogeeks/talking_reminder/NotificationHelper.java
+2
-9
app/src/main/java/com/sudogeeks/talking_reminder/ReadTheMessage.java
...n/java/com/sudogeeks/talking_reminder/ReadTheMessage.java
+1
-13
app/src/main/java/com/sudogeeks/talking_reminder/Reminder.java
...rc/main/java/com/sudogeeks/talking_reminder/Reminder.java
+2
-18
app/src/main/java/com/sudogeeks/talking_reminder/ReminderAddActivity.java
...a/com/sudogeeks/talking_reminder/ReminderAddActivity.java
+2
-4
app/src/main/java/com/sudogeeks/talking_reminder/ReminderDatabase.java
...java/com/sudogeeks/talking_reminder/ReminderDatabase.java
+2
-18
app/src/main/java/com/sudogeeks/talking_reminder/ReminderEditActivity.java
.../com/sudogeeks/talking_reminder/ReminderEditActivity.java
+2
-18
app/src/main/java/com/sudogeeks/talking_reminder/ReminderReceiveActivity.java
...m/sudogeeks/talking_reminder/ReminderReceiveActivity.java
+2
-5
app/src/main/java/com/sudogeeks/talking_reminder/Utility.java
...src/main/java/com/sudogeeks/talking_reminder/Utility.java
+1
-1
app/src/main/res/layout/activity_add_reminder.xml
app/src/main/res/layout/activity_add_reminder.xml
+1
-1
app/src/main/res/layout/activity_receive_reminder.xml
app/src/main/res/layout/activity_receive_reminder.xml
+325
-0
app/src/main/res/layout/licenses.xml
app/src/main/res/layout/licenses.xml
+0
-35
app/src/main/res/menu/main_menu.xml
app/src/main/res/menu/main_menu.xml
+1
-1
screenshots/screenshot1.png
screenshots/screenshot1.png
+0
-0
screenshots/screenshot2.png
screenshots/screenshot2.png
+0
-0
screenshots/screenshot3.png
screenshots/screenshot3.png
+0
-0
No files found.
app/src/main/AndroidManifest.xml
View file @
79cc996e
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<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.
sudogeeks.talking_reminder
"
>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<uses-permission
android:name=
"android.permission.RECEIVE_BOOT_COMPLETED"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
...
@@ -12,9 +12,9 @@
...
@@ -12,9 +12,9 @@
android:label=
"@string/app_name"
android:label=
"@string/app_name"
android:theme=
"@style/AppTheme"
android:theme=
"@style/AppTheme"
tools:replace=
"android:icon,android:theme"
>
tools:replace=
"android:icon,android:theme"
>
<activity
android:name=
".ReadTheMessage"
></activity>
<activity
android:name=
"
com.sudogeeks.talking_reminder
.ReadTheMessage"
></activity>
<activity
android:name=
".ReminderReceiveActivity"
>
<activity
android:name=
"
com.sudogeeks.talking_reminder
.ReminderReceiveActivity"
>
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
</activity>
</activity>
<activity
<activity
android:name=
".MainActivity"
android:name=
"
com.sudogeeks.talking_reminder
.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"
/>
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
</activity>
</activity>
<activity
<activity
android:name=
".ReminderAddActivity"
android:name=
"
com.sudogeeks.talking_reminder
.ReminderAddActivity"
android:label=
"@string/activity_add_reminder_label"
>
android:label=
"@string/activity_add_reminder_label"
>
<intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<action
android:name=
"android.intent.action.VIEW"
/>
...
@@ -43,12 +43,12 @@
...
@@ -43,12 +43,12 @@
</activity>
</activity>
<activity
<activity
android:name=
".ReminderEditActivity"
android:name=
"
com.sudogeeks.talking_reminder
.ReminderEditActivity"
android:label=
"@string/activity_edit_reminder_label"
/>
android:label=
"@string/activity_edit_reminder_label"
/>
<receiver
android:name=
".AlarmReceiver"
/>
<receiver
android:name=
"
com.sudogeeks.talking_reminder
.AlarmReceiver"
/>
<receiver
android:name=
".BootReceiver"
>
<receiver
android:name=
"
com.sudogeeks.talking_reminder
.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>
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
<provider
<provider
android:name=
"androidx.core.content.FileProvider"
android:name=
"androidx.core.content.FileProvider"
android:authorities=
"com.
blanyal.remindme
.fileprovider"
android:authorities=
"com.
sudogeeks.talking_reminder
.fileprovider"
android:exported=
"false"
android:exported=
"false"
android:grantUriPermissions=
"true"
>
android:grantUriPermissions=
"true"
>
<!-- ressource file to create -->
<!-- ressource file to create -->
...
@@ -67,7 +67,7 @@
...
@@ -67,7 +67,7 @@
</provider>
</provider>
<service
<service
android:name=
".ReadTheMessage"
android:name=
"
com.sudogeeks.talking_reminder
.ReadTheMessage"
android:enabled=
"true"
/>
android:enabled=
"true"
/>
</application>
</application>
...
...
app/src/main/java/com/blanyal/remindme/LicencesActivity.java
deleted
100644 → 0
View file @
65475998
/*
* 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.
*/
package
com.blanyal.remindme
;
import
android.os.Bundle
;
import
android.view.KeyEvent
;
import
android.view.View
;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.appcompat.widget.Toolbar
;
public
class
LicencesActivity
extends
AppCompatActivity
{
private
Toolbar
mToolbar
;
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
licenses
);
// Setup Toolbar
mToolbar
=
(
Toolbar
)
findViewById
(
R
.
id
.
toolbar
);
setSupportActionBar
(
mToolbar
);
getSupportActionBar
().
setDisplayHomeAsUpEnabled
(
true
);
getSupportActionBar
().
setHomeButtonEnabled
(
true
);
// Return to the previous activity on back press
mToolbar
.
setNavigationOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
onBackPressed
();
}
});
}
// To prevent crashes due to pressing physical menu buttons
@Override
public
boolean
onKeyDown
(
int
keyCode
,
KeyEvent
event
)
{
if
(
keyCode
==
KeyEvent
.
KEYCODE_MENU
)
{
// return true to prevent further propagation of the key event
return
true
;
}
return
super
.
onKeyDown
(
keyCode
,
event
);
}
// On clicking the back button
@Override
public
void
onBackPressed
()
{
super
.
onBackPressed
();
}
}
\ No newline at end of file
app/src/main/java/com/
blanyal/remindme
/AlarmReceiver.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/AlarmReceiver.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
package
com.sudogeeks.talking_reminder
;
*
* 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.
*/
package
com.blanyal.remindme
;
import
android.app.AlarmManager
;
import
android.app.AlarmManager
;
import
android.app.NotificationManager
;
import
android.app.PendingIntent
;
import
android.app.PendingIntent
;
import
android.content.BroadcastReceiver
;
import
android.content.BroadcastReceiver
;
import
android.content.ComponentName
;
import
android.content.ComponentName
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.content.pm.PackageManager
;
import
android.content.pm.PackageManager
;
import
android.graphics.BitmapFactory
;
import
android.media.RingtoneManager
;
import
android.os.SystemClock
;
import
android.os.SystemClock
;
import
androidx.core.app.NotificationCompat
;
import
androidx.core.app.NotificationCompat
;
...
@@ -41,14 +22,10 @@ public class AlarmReceiver extends BroadcastReceiver {
...
@@ -41,14 +22,10 @@ public class AlarmReceiver extends BroadcastReceiver {
@Override
@Override
public
void
onReceive
(
Context
context
,
Intent
intent
)
{
public
void
onReceive
(
Context
context
,
Intent
intent
)
{
int
mReceivedID
=
Integer
.
parseInt
(
intent
.
getStringExtra
(
ReminderEditActivity
.
EXTRA_REMINDER_ID
));
int
mReceivedID
=
Integer
.
parseInt
(
intent
.
getStringExtra
(
ReminderEditActivity
.
EXTRA_REMINDER_ID
));
//
//
//Get notification title from Reminder Database
//Get notification title from Reminder Database
ReminderDatabase
rb
=
new
ReminderDatabase
(
context
);
ReminderDatabase
rb
=
new
ReminderDatabase
(
context
);
Reminder
reminder
=
rb
.
getReminder
(
mReceivedID
);
Reminder
reminder
=
rb
.
getReminder
(
mReceivedID
);
...
@@ -63,20 +40,20 @@ public class AlarmReceiver extends BroadcastReceiver {
...
@@ -63,20 +40,20 @@ public class AlarmReceiver extends BroadcastReceiver {
editIntent
.
putExtra
(
ReminderEditActivity
.
EXTRA_REMINDER_ID
,
Integer
.
toString
(
mReceivedID
));
editIntent
.
putExtra
(
ReminderEditActivity
.
EXTRA_REMINDER_ID
,
Integer
.
toString
(
mReceivedID
));
PendingIntent
mClick
=
PendingIntent
.
getActivity
(
context
,
mReceivedID
,
editIntent
,
PendingIntent
.
FLAG_UPDATE_CURRENT
);
PendingIntent
mClick
=
PendingIntent
.
getActivity
(
context
,
mReceivedID
,
editIntent
,
PendingIntent
.
FLAG_UPDATE_CURRENT
);
// // Create Notification
// // Create Notification
// NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"MyChannelId_01")
// NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context,"MyChannelId_01")
// .setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher))
// .setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.mipmap.ic_launcher))
// .setSmallIcon(R.drawable.ic_alarm_on_white_24dp)
// .setSmallIcon(R.drawable.ic_alarm_on_white_24dp)
// .setContentTitle(context.getResources().getString(R.string.app_name))
// .setContentTitle(context.getResources().getString(R.string.app_name))
// .setTicker(mTitle)
// .setTicker(mTitle)
// .setContentText(mTitle)
// .setContentText(mTitle)
// .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
// .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
// .setContentIntent(mClick)
// .setContentIntent(mClick)
// .setAutoCancel(true)
// .setAutoCancel(true)
// .setOnlyAlertOnce(true);
// .setOnlyAlertOnce(true);
//
//
// NotificationManager nManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
// NotificationManager nManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
// nManager.notify(mReceivedID, mBuilder.build());
// nManager.notify(mReceivedID, mBuilder.build());
NotificationHelper
notificationHelper
=
new
NotificationHelper
(
context
,
intent
);
NotificationHelper
notificationHelper
=
new
NotificationHelper
(
context
,
intent
);
NotificationCompat
.
Builder
nb
=
notificationHelper
.
getChannelNotification
();
NotificationCompat
.
Builder
nb
=
notificationHelper
.
getChannelNotification
();
...
@@ -84,7 +61,7 @@ public class AlarmReceiver extends BroadcastReceiver {
...
@@ -84,7 +61,7 @@ public class AlarmReceiver extends BroadcastReceiver {
// tts
// tts
// context.startService(new Intent(context, ReadTheMessage.class));
// context.startService(new Intent(context, ReadTheMessage.class));
Intent
i
=
new
Intent
(
context
,
ReadTheMessage
.
class
);
Intent
i
=
new
Intent
(
context
,
ReadTheMessage
.
class
);
i
.
putExtra
(
"MyTitle"
,
mTitle
);
i
.
putExtra
(
"MyTitle"
,
mTitle
);
...
@@ -103,17 +80,17 @@ public class AlarmReceiver extends BroadcastReceiver {
...
@@ -103,17 +80,17 @@ public class AlarmReceiver extends BroadcastReceiver {
// Intent speechIntent = new Intent();
// Intent speechIntent = new Intent();
// speechIntent.setClass(context, ReadTheMessage.class);
// speechIntent.setClass(context, ReadTheMessage.class);
// speechIntent.putExtra("MESSAGE",mTitle );
// speechIntent.putExtra("MESSAGE",mTitle );
// speechIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
// speechIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
// context.startActivity(speechIntent);
// context.startActivity(speechIntent);
////
////
// Intent speechIntent = new Intent();
// Intent speechIntent = new Intent();
// speechIntent.putExtra("MESSAGE", "Bluetooth is on.");
// speechIntent.putExtra("MESSAGE", "Bluetooth is on.");
// ReadTheMessage.enqueueWork(context, speechIntent);
// ReadTheMessage.enqueueWork(context, speechIntent);
//
//
}
}
...
...
app/src/main/java/com/
blanyal/remindme
/BootReceiver.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/BootReceiver.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
package
com.sudogeeks.talking_reminder
;
*
* 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.
*/
package
com.blanyal.remindme
;
import
android.content.BroadcastReceiver
;
import
android.content.BroadcastReceiver
;
import
android.content.Context
;
import
android.content.Context
;
...
...
app/src/main/java/com/
blanyal/remindme
/DateTimeSorter.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/DateTimeSorter.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
// Class to create DateTime objects for easy sorting
// Class to create DateTime objects for easy sorting
public
class
DateTimeSorter
{
public
class
DateTimeSorter
{
...
...
app/src/main/java/com/
blanyal/remindme
/MainActivity.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/MainActivity.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
*
package
com.sudogeeks.talking_reminder
;
* 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.
*/
package
com.blanyal.remindme
;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.os.Bundle
;
import
android.os.Bundle
;
...
...
app/src/main/java/com/
blanyal/remindme
/NotificationHelper.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/NotificationHelper.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
//package com.example.application.alarmmanagerproject;
//package com.example.application.alarmmanagerproject;
import
androidx.core.app.NotificationCompat
;
import
androidx.core.app.NotificationCompat
;
...
@@ -7,20 +7,13 @@ import android.annotation.TargetApi;
...
@@ -7,20 +7,13 @@ import android.annotation.TargetApi;
import
android.app.NotificationChannel
;
import
android.app.NotificationChannel
;
import
android.app.NotificationManager
;
import
android.app.NotificationManager
;
import
android.app.PendingIntent
;
import
android.app.PendingIntent
;
import
android.content.ContentResolver
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.ContextWrapper
;
import
android.content.ContextWrapper
;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.net.Uri
;
import
android.os.Build
;
import
android.os.Build
;
import
android.graphics.BitmapFactory
;
import
android.graphics.BitmapFactory
;
import
android.media.RingtoneManager
;
import
android.speech.tts.TextToSpeech
;
import
android.speech.tts.TextToSpeech
;
import
java.io.File
;
import
java.util.HashMap
;
import
java.util.Locale
;
public
class
NotificationHelper
extends
ContextWrapper
{
public
class
NotificationHelper
extends
ContextWrapper
{
public
static
final
String
channelID
=
"channelID"
;
public
static
final
String
channelID
=
"channelID"
;
...
@@ -85,7 +78,7 @@ public class NotificationHelper extends ContextWrapper {
...
@@ -85,7 +78,7 @@ public class NotificationHelper extends ContextWrapper {
//.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM))
//.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM))
// .setSound(Uri.fromFile(new File("SDCARD/s1.mp3")))
// .setSound(Uri.fromFile(new File("SDCARD/s1.mp3")))
//.setSound(null)
//.setSound(null)
.
setPriority
(
NotificationManager
.
IMPORTANCE_LOW
)
.
setPriority
(
NotificationManager
.
IMPORTANCE_HIGH
)
.
setContentIntent
(
mClick
)
.
setContentIntent
(
mClick
)
.
setAutoCancel
(
true
)
.
setAutoCancel
(
true
)
.
setOnlyAlertOnce
(
true
);
.
setOnlyAlertOnce
(
true
);
...
...
app/src/main/java/com/
blanyal/remindme
/ReadTheMessage.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/ReadTheMessage.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
import
android.app.Activity
;
import
android.app.Service
;
import
android.app.Service
;
import
android.os.Bundle
;
import
android.os.IBinder
;
import
android.os.IBinder
;
import
android.speech.tts.TextToSpeech
;
import
android.speech.tts.TextToSpeech
;
import
android.app.AlarmManager
;
import
android.app.NotificationManager
;
import
android.app.PendingIntent
;
import
android.content.BroadcastReceiver
;
import
android.content.ComponentName
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.Intent
;
import
android.content.pm.PackageManager
;
import
android.graphics.BitmapFactory
;
import
android.media.RingtoneManager
;
import
android.os.SystemClock
;
import
java.util.Locale
;
import
java.util.Locale
;
...
...
app/src/main/java/com/
blanyal/remindme
/Reminder.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/Reminder.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
package
com.sudogeeks.talking_reminder
;
*
* 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.
*/
package
com.blanyal.remindme
;
// Reminder class
// Reminder class
public
class
Reminder
{
public
class
Reminder
{
...
...
app/src/main/java/com/
blanyal/remindme
/ReminderAddActivity.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/ReminderAddActivity.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
import
android.Manifest
;
import
android.Manifest
;
import
android.app.AlertDialog
;
import
android.app.AlertDialog
;
...
@@ -17,7 +17,6 @@ import android.text.TextWatcher;
...
@@ -17,7 +17,6 @@ import android.text.TextWatcher;
import
android.view.Menu
;
import
android.view.Menu
;
import
android.view.MenuItem
;
import
android.view.MenuItem
;
import
android.view.View
;
import
android.view.View
;
import
android.widget.Button
;
import
android.widget.DatePicker
;
import
android.widget.DatePicker
;
import
android.widget.EditText
;
import
android.widget.EditText
;
import
android.widget.Switch
;
import
android.widget.Switch
;
...
@@ -36,7 +35,6 @@ import com.google.gson.Gson;
...
@@ -36,7 +35,6 @@ import com.google.gson.Gson;
import
com.google.gson.GsonBuilder
;
import
com.google.gson.GsonBuilder
;
import
java.io.File
;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.FileOutputStream
;
import
java.io.FileOutputStream
;
import
java.util.Calendar
;
import
java.util.Calendar
;
...
@@ -522,7 +520,7 @@ public class ReminderAddActivity extends AppCompatActivity {
...
@@ -522,7 +520,7 @@ public class ReminderAddActivity extends AppCompatActivity {
File
filePath
=
context
.
getFilesDir
();
File
filePath
=
context
.
getFilesDir
();
File
fileToSend
=
new
File
(
filePath
,
filename
);
File
fileToSend
=
new
File
(
filePath
,
filename
);
Uri
fileUri
=
FileProvider
.
getUriForFile
(
context
,
Uri
fileUri
=
FileProvider
.
getUriForFile
(
context
,
"com.
blanyal.remindme.fileprovider"
,
fileToSend
);
"com.
sudogeeks.talking_reminder.fileprovider"
,
fileToSend
);
//TODO remove hardcoded dependencies
Intent
share
=
new
Intent
();
Intent
share
=
new
Intent
();
share
.
setAction
(
Intent
.
ACTION_SEND
);
share
.
setAction
(
Intent
.
ACTION_SEND
);
share
.
putExtra
(
Intent
.
EXTRA_STREAM
,
fileUri
);
share
.
putExtra
(
Intent
.
EXTRA_STREAM
,
fileUri
);
...
...
app/src/main/java/com/
blanyal/remindme
/ReminderDatabase.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/ReminderDatabase.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
package
com.sudogeeks.talking_reminder
;
*
* 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.
*/
package
com.blanyal.remindme
;
import
android.content.ContentValues
;
import
android.content.ContentValues
;
import
android.content.Context
;
import
android.content.Context
;
...
...
app/src/main/java/com/
blanyal/remindme
/ReminderEditActivity.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/ReminderEditActivity.java
View file @
79cc996e
/*
* Copyright 2015 Blanyal D'Souza.
package
com.sudogeeks.talking_reminder
;
*
* 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.
*/
package
com.blanyal.remindme
;
import
android.app.AlertDialog
;
import
android.app.AlertDialog
;
import
android.app.DatePickerDialog
;
import
android.app.DatePickerDialog
;
...
...
app/src/main/java/com/
blanyal/remindme
/ReminderReceiveActivity.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/ReminderReceiveActivity.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.appcompat.widget.Toolbar
;
import
androidx.appcompat.widget.Toolbar
;
import
androidx.core.content.FileProvider
;
import
android.content.Context
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.content.Intent
;
...
@@ -16,8 +15,6 @@ import android.widget.Toast;
...
@@ -16,8 +15,6 @@ import android.widget.Toast;
import
org.json.JSONObject
;
import
org.json.JSONObject
;
import
java.io.File
;
import
java.io.FileInputStream
;
import
java.io.InputStream
;
import
java.io.InputStream
;
import
java.util.Calendar
;
import
java.util.Calendar
;
...
@@ -44,7 +41,7 @@ public class ReminderReceiveActivity extends AppCompatActivity {
...
@@ -44,7 +41,7 @@ public class ReminderReceiveActivity extends AppCompatActivity {
@Override
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
activity_
add
_reminder
);
setContentView
(
R
.
layout
.
activity_
receive
_reminder
);
Context
context
=
this
;
Context
context
=
this
;
mCalendar
=
Calendar
.
getInstance
();
mCalendar
=
Calendar
.
getInstance
();
...
...
app/src/main/java/com/
blanyal/remindme
/Utility.java
→
app/src/main/java/com/
sudogeeks/talking_reminder
/Utility.java
View file @
79cc996e
package
com.
blanyal.remindme
;
package
com.
sudogeeks.talking_reminder
;
public
class
Utility
{
public
class
Utility
{
public
static
final
String
FILE_NAME_PREFIX
=
"Talking_Reminder"
;
public
static
final
String
FILE_NAME_PREFIX
=
"Talking_Reminder"
;
...
...
app/src/main/res/layout/activity_add_reminder.xml
View file @
79cc996e
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:contentInsetLeft=
"0dp"
app:contentInsetLeft=
"0dp"
app:contentInsetStart=
"16dp"
app:contentInsetStart=
"16dp"
app:theme=
"@style/ThemeOverlay.AppCompat.Da
yNight
.ActionBar"
app:theme=
"@style/ThemeOverlay.AppCompat.Da
rk
.ActionBar"
android:background=
"?attr/colorPrimary"
/>
android:background=
"?attr/colorPrimary"
/>
<LinearLayout
<LinearLayout
...
...
app/src/main/res/layout/activity_receive_reminder.xml
0 → 100644
View file @
79cc996e
This diff is collapsed.
Click to expand it.
app/src/main/res/layout/licenses.xml
deleted
100644 → 0
View file @
65475998
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
>
<ScrollView
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:id=
"@+id/scroll_view"
android:layout_below=
"@id/toolbar"
android:layout_height=
"fill_parent"
>
</ScrollView>
<android.support.v7.widget.Toolbar
android:id=
"@+id/toolbar"
android:layout_height=
"wrap_content"
android:layout_width=
"match_parent"
android:minHeight=
"?attr/actionBarSize"
app:popupTheme=
"@style/ThemeOverlay.AppCompat.Light"
app:contentInsetLeft=
"0dp"
app:contentInsetStart=
"16dp"
app:theme=
"@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:background=
"?attr/colorPrimary"
/>
<View
android:layout_width=
"match_parent"
android:layout_height=
"2dp"
android:layout_below=
"@+id/toolbar"
android:background=
"@drawable/toolbar_dropshadow"
/>
</RelativeLayout>
\ No newline at end of file
app/src/main/res/menu/main_menu.xml
View file @
79cc996e
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
<menu
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
xmlns:tools=
"http://schemas.android.com/tools"
tools:context=
"com.blanyal.
remindme
.MainActivity"
>
tools:context=
"com.blanyal.
talking_reminder
.MainActivity"
>
<!-- <item android:id="@+id/action_licenses"-->
<!-- <item android:id="@+id/action_licenses"-->
<!-- android:title="@string/title_activity_licenses"-->
<!-- android:title="@string/title_activity_licenses"-->
...
...
screenshots/screenshot1.png
deleted
100644 → 0
View file @
65475998
115 KB
screenshots/screenshot2.png
deleted
100644 → 0
View file @
65475998
71.5 KB
screenshots/screenshot3.png
deleted
100644 → 0
View file @
65475998
1.85 MB
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