├── app ├── .gitignore ├── src │ └── main │ │ ├── play │ │ ├── default-language.txt │ │ ├── contact-email.txt │ │ ├── listings │ │ │ ├── en-US │ │ │ │ ├── title.txt │ │ │ │ ├── short-description.txt │ │ │ │ ├── graphics │ │ │ │ │ ├── feature-graphic │ │ │ │ │ │ └── featured.png │ │ │ │ │ ├── phone-screenshots │ │ │ │ │ │ ├── 1-main.png │ │ │ │ │ │ ├── 2-info.png │ │ │ │ │ │ ├── 4-other.png │ │ │ │ │ │ └── 3-settings.png │ │ │ │ │ └── icon │ │ │ │ │ │ └── ic_launcher-playstore.png │ │ │ │ └── full-description.txt │ │ │ ├── fr-FR │ │ │ │ ├── title.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── full-description.txt │ │ │ └── ru-RU │ │ │ │ ├── title.txt │ │ │ │ ├── short-description.txt │ │ │ │ └── full-description.txt │ │ ├── contact-website.txt │ │ └── release-notes │ │ │ ├── en-US │ │ │ └── default.txt │ │ │ ├── fr-FR │ │ │ └── default.txt │ │ │ └── ru-RU │ │ │ └── default.txt │ │ ├── res │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-hdpi │ │ │ └── ic_notification.png │ │ ├── drawable-mdpi │ │ │ └── ic_notification.png │ │ ├── drawable-xhdpi │ │ │ └── ic_notification.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_notification.png │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── styles.xml │ │ │ └── strings.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ ├── drawable │ │ │ ├── delete.xml │ │ │ ├── info.xml │ │ │ ├── notification.xml │ │ │ ├── sync_from.xml │ │ │ ├── sync_to.xml │ │ │ ├── share.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ └── settings.xml │ │ ├── xml │ │ │ └── shortcuts.xml │ │ ├── layout │ │ │ ├── about.xml │ │ │ ├── configuration.xml │ │ │ └── activity_editor.xml │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ │ └── strings.xml │ │ └── values-es │ │ │ └── strings.xml │ │ ├── java │ │ └── com │ │ │ └── trianguloy │ │ │ └── clipboardeditor │ │ │ ├── SimpleTextWatcher.java │ │ │ ├── Shortcuts.java │ │ │ ├── Process.java │ │ │ ├── Preferences.java │ │ │ └── Editor.java │ │ └── AndroidManifest.xml ├── proguard-rules.pro └── build.gradle ├── .idea ├── .name ├── .gitignore ├── compiler.xml ├── AndroidProjectSystem.xml ├── migrations.xml ├── deploymentTargetSelector.xml ├── runConfigurations.xml └── misc.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── LICENSE ├── settings.gradle ├── gradle.properties ├── README.md ├── README_RU.md ├── .gitignore ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Simple Clipboard Editor -------------------------------------------------------------------------------- /app/src/main/play/default-language.txt: -------------------------------------------------------------------------------- 1 | en-US 2 | -------------------------------------------------------------------------------- /app/src/main/play/contact-email.txt: -------------------------------------------------------------------------------- 1 | correo--correo+sce@hotmail.com 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simple Clipboard Editor 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Simple Clipboard Editor 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /app/src/main/play/contact-website.txt: -------------------------------------------------------------------------------- 1 | https://triangularapps.blogspot.com/ 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Простой редактор буфера обмена 2 | -------------------------------------------------------------------------------- /app/src/main/play/listings/en-US/short-description.txt: -------------------------------------------------------------------------------- 1 | View, edit or delete the phone clipboard's text with a simple and fast editor. 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/play/listings/fr-FR/short-description.txt: -------------------------------------------------------------------------------- 1 | intéragissez avec le presse-papiers de votre smartphone via un éditeur efficace. 2 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/play/listings/ru-RU/short-description.txt: -------------------------------------------------------------------------------- 1 | Просматривайте, редактируйте или удаляйте текст из буфера обмена телефона с помощью простого и быстрого редактора. 2 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrianguloY/SimpleClipboardEditor/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFFFFF 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |