├── readme-res ├── icon.png ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png └── screenshot_5.png ├── app ├── release │ ├── app-release.aab │ ├── app-release.apk │ └── output-metadata.json ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ ├── values-night │ │ │ └── colors.xml │ │ ├── drawable │ │ │ ├── color_dot.xml │ │ │ ├── list_item_bg.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_note.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── ic_settings.xml │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── layout │ │ │ ├── qs_detail_view.xml │ │ │ ├── qs_detail_list_item.xml │ │ │ └── activity_dialog.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ └── menu │ │ │ └── settings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── de │ │ └── dlyt │ │ └── yanndroid │ │ └── notinotes │ │ ├── ActionReceiver.kt │ │ ├── QSTile.kt │ │ ├── Notes.kt │ │ ├── Notification.kt │ │ └── DialogActivity.kt ├── proguard-rules.pro └── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── PRIVACY_POLICY.md ├── LICENSE ├── .github └── workflows │ └── release.yml ├── gradle.properties ├── README.md ├── gradlew.bat └── gradlew /readme-res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/icon.png -------------------------------------------------------------------------------- /app/release/app-release.aab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/app/release/app-release.aab -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /readme-res/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/screenshot_1.png -------------------------------------------------------------------------------- /readme-res/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/screenshot_2.png -------------------------------------------------------------------------------- /readme-res/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/screenshot_3.png -------------------------------------------------------------------------------- /readme-res/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/screenshot_4.png -------------------------------------------------------------------------------- /readme-res/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/readme-res/screenshot_5.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yanndroid/NotiNotes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #000000 4 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffff 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF4B3C 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/color_dot.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | dependencyResolutionManagement { 2 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 3 | repositories { 4 | google() 5 | mavenCentral() 6 | jcenter() // Warning: this repository is going to shut down soon 7 | } 8 | } 9 | rootProject.name = "NotiNotes" 10 | include ':app' 11 | -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- 1 | ## NotiNotes Privacy Policy 2 | 3 | NotiNotes is an open source android app developed by Yanndroid and under the MIT License. It's published on the Google Play Store and the source code is available on Github. 4 | 5 | This app does not collect any personal information and all the app data is stored locally on your device only. 6 | 7 | If you have any questions, please contact me at yanndroid.dev@gmail.com -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "artifactType": { 4 | "type": "APK", 5 | "kind": "Directory" 6 | }, 7 | "applicationId": "de.dlyt.yanndroid.notinotes", 8 | "variantName": "release", 9 | "elements": [ 10 | { 11 | "type": "SINGLE", 12 | "filters": [], 13 | "attributes": [], 14 | "versionCode": 14, 15 | "versionName": "1.7.3", 16 | "outputFile": "app-release.apk" 17 | } 18 | ], 19 | "elementType": "File" 20 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/list_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NotiNotes 3 | Edit 4 | Delete 5 | Title 6 | Note 7 | New Note 8 | Save 9 | Cancel 10 | Notes 11 | Hide on Lockscreen 12 | Lock in Notifications 13 | Note saved as copy 14 | Group 15 | Background tint 16 | Confirm delete 17 | -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Bearbeiten 3 | Löschen 4 | Titel 5 | Notiz 6 | Neue Notiz 7 | Speichern 8 | Abbrechen 9 | Notizen 10 | Auf dem Sperrbildschrim ausblenden 11 | In Benarichtigungen sperren 12 | Notiz als Kopie gespeichert 13 | Gruppieren 14 | Hintergrund färben 15 | Löschen bestätigen 16 | -------------------------------------------------------------------------------- /app/src/main/res/layout/qs_detail_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 |