├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── Screenshot_1480663399.png ├── Screenshot_1480663425.png ├── app-debug.apk ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── marlonjones │ │ └── simplereminder │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_large-web.png │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── marlonjones │ │ │ └── simplereminder │ │ │ ├── ConfirmActivity.java │ │ │ ├── MainActivity.java │ │ │ └── TimeBroadcast.java │ └── res │ │ ├── drawable-hdpi-v11 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-hdpi-v9 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-hdpi │ │ ├── ic_action_name.png │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-mdpi-v11 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-mdpi-v9 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-mdpi │ │ ├── ic_action_name.png │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xhdpi-v11 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xhdpi-v9 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_name.png │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xxhdpi-v11 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xxhdpi-v9 │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_name.png │ │ ├── ic_note.png │ │ └── ic_small.png │ │ ├── mipmap-hdpi │ │ ├── ic_large.png │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ ├── ic_large.png │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ ├── ic_large.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_large.png │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_large.png │ │ └── ic_launcher.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── marlonjones │ └── simplereminder │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── license └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 23 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 19 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 46 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Simple Reminder App for Android 2 | Remember is a simple and quick reminder app that will create a Persistant Notification on your device. Unlike most Reminder apps, this one is made for quick access, and quick use rather than long lists or long 3 | recurring reminders. This app is also in the process of being rewritten as "Ping", but may not be completed in time due to college and 4 | other projects. 5 | ## NOTE - Old Project 6 | This is an old personal project that I am no longer maintaining or updating. However, the code will stay open for anyone to use in their own projects, and I will also still monitor the Issues for any questions about the project. 7 | 8 | Libraries used: 9 | Material Dialogs by Aidan Follestad. 10 | 11 | ## License - Apache 2.0 12 | 13 | ```` 14 | Copyright 2016 Marlon Jones 15 | 16 | Licensed under the Apache License, Version 2.0 (the "License"); 17 | you may not use this file except in compliance with the License. 18 | You may obtain a copy of the License at 19 | 20 | http://www.apache.org/licenses/LICENSE-2.0 21 | 22 | Unless required by applicable law or agreed to in writing, software 23 | distributed under the License is distributed on an "AS IS" BASIS, 24 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 25 | See the License for the specific language governing permissions and 26 | limitations under the License. 27 | 28 | ```` 29 | -------------------------------------------------------------------------------- /Screenshot_1480663399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/Screenshot_1480663399.png -------------------------------------------------------------------------------- /Screenshot_1480663425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/Screenshot_1480663425.png -------------------------------------------------------------------------------- /app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app-debug.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 26 5 | buildToolsVersion "26.0.0" 6 | defaultConfig { 7 | applicationId "com.marlonjones.simplereminder" 8 | minSdkVersion 18 9 | targetSdkVersion 26 10 | versionCode 3 11 | versionName "1.0.5" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | compile fileTree(dir: 'libs', include: ['*.jar']) 24 | androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { 25 | exclude group: 'com.android.support', module: 'support-annotations' 26 | }) 27 | compile 'com.android.support:appcompat-v7:26.0.0-beta2' 28 | compile 'com.android.support:design:26.0.0-beta2' 29 | compile 'com.afollestad.material-dialogs:core:0.9.4.5' 30 | compile 'com.afollestad.material-dialogs:commons:0.9.4.5' 31 | testCompile 'junit:junit:4.12' 32 | } 33 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in C:\AndroidSDK/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/marlonjones/simplereminder/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.marlonjones.simplereminder; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumentation test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.marlonjones.simplereminder", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 17 | 18 | 19 | 20 | 21 | 22 | 28 | 29 | 30 | 31 | 32 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/ic_large-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/ic_large-web.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/marlonjones/simplereminder/ConfirmActivity.java: -------------------------------------------------------------------------------- 1 | package com.marlonjones.simplereminder; 2 | /** 3 | * Java Class made by Marlon Jones (MJonesDev) on 12/12/2016. 4 | */ 5 | import android.app.NotificationManager; 6 | import android.content.DialogInterface; 7 | import android.content.Intent; 8 | import android.os.Bundle; 9 | import android.support.annotation.NonNull; 10 | import android.support.v7.app.AppCompatActivity; 11 | import android.widget.Toast; 12 | 13 | import com.afollestad.materialdialogs.DialogAction; 14 | import com.afollestad.materialdialogs.MaterialDialog; 15 | 16 | public class ConfirmActivity extends AppCompatActivity { 17 | public static final int NOTIFICATION_ID = 1; 18 | 19 | @Override 20 | protected void onCreate(Bundle savedInstanceState) { 21 | super.onCreate(savedInstanceState); 22 | new MaterialDialog.Builder(this) 23 | .title(R.string.confirm_title) 24 | .content(R.string.confirm_content) 25 | .positiveText(R.string.confirm_pos) 26 | .positiveText(R.string.another) 27 | .negativeText(R.string.confirm_neg) 28 | .onPositive(new MaterialDialog.SingleButtonCallback() { 29 | @Override 30 | public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) { 31 | Intent reOpen = new Intent (getApplicationContext(), MainActivity.class); 32 | reOpen.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 33 | getApplicationContext().startActivity(reOpen); 34 | } 35 | }) 36 | .onNegative(new MaterialDialog.SingleButtonCallback() { 37 | @Override 38 | public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) { 39 | Toast.makeText(ConfirmActivity.this, R.string.done, 40 | Toast.LENGTH_SHORT).show(); 41 | NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 42 | notificationManager.cancel(NOTIFICATION_ID); 43 | } 44 | }) 45 | .dismissListener(new DialogInterface.OnDismissListener() { 46 | @Override 47 | public void onDismiss(DialogInterface dialog) { 48 | finish(); 49 | } 50 | }).show(); 51 | } 52 | public void onBackPressed(){ 53 | finish(); 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /app/src/main/java/com/marlonjones/simplereminder/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.marlonjones.simplereminder; 2 | /** 3 | * Java Class made by Marlon Jones (MJonesDev) on 12/1/2016. 4 | */ 5 | import android.app.NotificationManager; 6 | import android.app.PendingIntent; 7 | import android.content.DialogInterface; 8 | import android.content.Intent; 9 | import android.graphics.BitmapFactory; 10 | import android.os.Bundle; 11 | import android.support.annotation.NonNull; 12 | import android.support.v7.app.AppCompatActivity; 13 | import android.support.v7.app.NotificationCompat; 14 | import android.text.InputType; 15 | import android.widget.Toast; 16 | import com.afollestad.materialdialogs.DialogAction; 17 | import com.afollestad.materialdialogs.MaterialDialog; 18 | 19 | 20 | public class MainActivity extends AppCompatActivity { 21 | //TODO - Change some code to Kotlin 22 | public static final int NOTIFICATION_ID = 1; 23 | @Override 24 | protected void onCreate(Bundle savedInstanceState) { 25 | super.onCreate(savedInstanceState); 26 | 27 | new MaterialDialog.Builder(this) 28 | .title(R.string.input) 29 | .autoDismiss(false) 30 | .inputType(InputType.TYPE_CLASS_TEXT) 31 | .negativeText(R.string.remind_time) 32 | .positiveText(R.string.set_note) 33 | .onNegative(new MaterialDialog.SingleButtonCallback() { 34 | @Override 35 | public void onClick(@NonNull MaterialDialog dialog, @NonNull DialogAction which) { 36 | 37 | } 38 | }) 39 | .input(null, null, new MaterialDialog.InputCallback() 40 | 41 | { 42 | @Override 43 | public void onInput(MaterialDialog dialog, CharSequence input) { 44 | Intent confirmIntent = new Intent(getApplicationContext(), ConfirmActivity.class); 45 | PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), 46 | 0, confirmIntent, PendingIntent.FLAG_UPDATE_CURRENT); 47 | 48 | NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); 49 | NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()); 50 | builder.setStyle(new NotificationCompat.BigTextStyle().bigText(input.toString())); //BigText 51 | builder.setContentIntent(pendingIntent); 52 | builder.setSmallIcon(R.drawable.ic_small); 53 | builder.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_large)); 54 | builder.setContentTitle("Remember!"); 55 | builder.setOngoing(true); 56 | builder.setContentText(input.toString()); //Get text from dialog input 57 | notificationManager.notify(NOTIFICATION_ID, builder.build()); 58 | Toast.makeText(MainActivity.this, R.string.confirm, Toast.LENGTH_LONG).show(); 59 | finish(); 60 | } 61 | 62 | //Close app when dialog is dismissed (ex: click outside of dialog) 63 | }).dismissListener(new DialogInterface.OnDismissListener() { 64 | @Override 65 | public void onDismiss(DialogInterface dialog) { 66 | finish(); 67 | 68 | } 69 | }).show(); 70 | } 71 | public void onBackPressed(){ 72 | finish(); 73 | } 74 | 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/java/com/marlonjones/simplereminder/TimeBroadcast.java: -------------------------------------------------------------------------------- 1 | package com.marlonjones.simplereminder; 2 | 3 | 4 | import android.content.BroadcastReceiver; 5 | import android.content.Context; 6 | import android.content.Intent; 7 | 8 | /** 9 | * Created by Marlon Jones (@MJonesDev on 6/8/2017. 10 | * github.com/MJonesDev 11 | */ 12 | 13 | public class TimeBroadcast extends BroadcastReceiver { 14 | @Override 15 | public void onReceive(Context context, Intent intent) { 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi-v11/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi-v11/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi-v11/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi-v11/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi-v9/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi-v9/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi-v9/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi-v9/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-hdpi/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi-v11/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi-v11/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi-v11/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi-v11/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi-v9/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi-v9/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi-v9/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi-v9/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-mdpi/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi-v11/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi-v11/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi-v11/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi-v11/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi-v9/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi-v9/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi-v9/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi-v9/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xhdpi/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi-v11/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi-v11/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi-v11/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi-v11/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi-v9/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi-v9/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi-v9/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi-v9/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi/ic_action_name.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi/ic_note.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/drawable-xxhdpi/ic_small.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-hdpi/ic_large.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-mdpi/ic_large.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xhdpi/ic_large.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xxhdpi/ic_large.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xxxhdpi/ic_large.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PanHyridae/Simple-Reminder-Android/f034dfd25c92ff93e00519e8374066d16f30eba4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #f44336 7 | #ffffff 8 | #000000 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Remember 3 | Set Your Reminder 4 | Enter your reminder text 5 | Notification Selected 6 | Make Persistent 7 | Reminder Set! 8 | Set Time 9 | Add Time 10 | Make Another 11 | Done! Reminder has been closed. 12 | Show Notification 13 | What would you like to do? 14 | Remake it 15 | Close it 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 19 | 20 |