├── .gitignore ├── README.md ├── apps ├── MyEmail.apk ├── MyEmailBinder.apk ├── MyEmailNotif.apk ├── MyNotepad.apk ├── MyNotepadBinder.apk └── MyNotepadNotif.apk └── source ├── MyEmail ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── myemail │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── myemail │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── myemail │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── MyEmailBinder ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── myemailbinder │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── myemailbinder │ │ │ │ ├── CommunicationService.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── myemailbinder │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── MyEmailNotif ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── myemailnotif │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── myemailnotif │ │ │ │ ├── CommunicationService.java │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── myemailnotif │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── MyNotepad ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── mynotepad │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── mynotepad │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── mynotepad │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── MyNotepadBinder ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── mynotepadbinder │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── mynotepadbinder │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── mynotepadbinder │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── MyNotepadNotif ├── .gitignore ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── lauriewired │ │ │ └── mynotepadnotif │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── native-lib.cpp │ │ ├── ic_launcher-playstore.png │ │ ├── java │ │ │ └── com │ │ │ │ └── lauriewired │ │ │ │ └── mynotepadnotif │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── lauriewired │ │ └── mynotepadnotif │ │ └── ExampleUnitTest.java ├── build.gradle.kts ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts └── ipc.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/README.md -------------------------------------------------------------------------------- /apps/MyEmail.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyEmail.apk -------------------------------------------------------------------------------- /apps/MyEmailBinder.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyEmailBinder.apk -------------------------------------------------------------------------------- /apps/MyEmailNotif.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyEmailNotif.apk -------------------------------------------------------------------------------- /apps/MyNotepad.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyNotepad.apk -------------------------------------------------------------------------------- /apps/MyNotepadBinder.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyNotepadBinder.apk -------------------------------------------------------------------------------- /apps/MyNotepadNotif.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/apps/MyNotepadNotif.apk -------------------------------------------------------------------------------- /source/MyEmail/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/.gitignore -------------------------------------------------------------------------------- /source/MyEmail/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyEmail/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmail/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyEmail/app/src/androidTest/java/com/lauriewired/myemail/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/androidTest/java/com/lauriewired/myemail/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/java/com/lauriewired/myemail/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/java/com/lauriewired/myemail/MainActivity.java -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyEmail/app/src/test/java/com/lauriewired/myemail/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/app/src/test/java/com/lauriewired/myemail/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyEmail/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmail/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradle.properties -------------------------------------------------------------------------------- /source/MyEmail/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyEmail/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyEmail/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyEmail/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradlew -------------------------------------------------------------------------------- /source/MyEmail/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/gradlew.bat -------------------------------------------------------------------------------- /source/MyEmail/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmail/settings.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailBinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/.gitignore -------------------------------------------------------------------------------- /source/MyEmailBinder/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyEmailBinder/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailBinder/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/androidTest/java/com/lauriewired/myemailbinder/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/androidTest/java/com/lauriewired/myemailbinder/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/java/com/lauriewired/myemailbinder/CommunicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/java/com/lauriewired/myemailbinder/CommunicationService.java -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/java/com/lauriewired/myemailbinder/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/java/com/lauriewired/myemailbinder/MainActivity.java -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyEmailBinder/app/src/test/java/com/lauriewired/myemailbinder/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/app/src/test/java/com/lauriewired/myemailbinder/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyEmailBinder/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailBinder/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradle.properties -------------------------------------------------------------------------------- /source/MyEmailBinder/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyEmailBinder/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyEmailBinder/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyEmailBinder/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradlew -------------------------------------------------------------------------------- /source/MyEmailBinder/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/gradlew.bat -------------------------------------------------------------------------------- /source/MyEmailBinder/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailBinder/settings.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailNotif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/.gitignore -------------------------------------------------------------------------------- /source/MyEmailNotif/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyEmailNotif/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailNotif/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/androidTest/java/com/lauriewired/myemailnotif/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/androidTest/java/com/lauriewired/myemailnotif/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/java/com/lauriewired/myemailnotif/CommunicationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/java/com/lauriewired/myemailnotif/CommunicationService.java -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/java/com/lauriewired/myemailnotif/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/java/com/lauriewired/myemailnotif/MainActivity.java -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyEmailNotif/app/src/test/java/com/lauriewired/myemailnotif/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/app/src/test/java/com/lauriewired/myemailnotif/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyEmailNotif/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/build.gradle.kts -------------------------------------------------------------------------------- /source/MyEmailNotif/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradle.properties -------------------------------------------------------------------------------- /source/MyEmailNotif/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyEmailNotif/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyEmailNotif/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyEmailNotif/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradlew -------------------------------------------------------------------------------- /source/MyEmailNotif/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/gradlew.bat -------------------------------------------------------------------------------- /source/MyEmailNotif/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyEmailNotif/settings.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/.gitignore -------------------------------------------------------------------------------- /source/MyNotepad/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyNotepad/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepad/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyNotepad/app/src/androidTest/java/com/lauriewired/mynotepad/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/androidTest/java/com/lauriewired/mynotepad/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/java/com/lauriewired/mynotepad/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/java/com/lauriewired/mynotepad/MainActivity.java -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyNotepad/app/src/test/java/com/lauriewired/mynotepad/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/app/src/test/java/com/lauriewired/mynotepad/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyNotepad/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepad/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradle.properties -------------------------------------------------------------------------------- /source/MyNotepad/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyNotepad/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyNotepad/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyNotepad/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradlew -------------------------------------------------------------------------------- /source/MyNotepad/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/gradlew.bat -------------------------------------------------------------------------------- /source/MyNotepad/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepad/settings.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadBinder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/.gitignore -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/androidTest/java/com/lauriewired/mynotepadbinder/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/androidTest/java/com/lauriewired/mynotepadbinder/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/java/com/lauriewired/mynotepadbinder/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/java/com/lauriewired/mynotepadbinder/MainActivity.java -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyNotepadBinder/app/src/test/java/com/lauriewired/mynotepadbinder/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/app/src/test/java/com/lauriewired/mynotepadbinder/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyNotepadBinder/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradle.properties -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradlew -------------------------------------------------------------------------------- /source/MyNotepadBinder/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/gradlew.bat -------------------------------------------------------------------------------- /source/MyNotepadBinder/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadBinder/settings.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadNotif/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/.gitignore -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/proguard-rules.pro -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/androidTest/java/com/lauriewired/mynotepadnotif/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/androidTest/java/com/lauriewired/mynotepadnotif/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/cpp/native-lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/cpp/native-lib.cpp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/java/com/lauriewired/mynotepadnotif/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/java/com/lauriewired/mynotepadnotif/MainActivity.java -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /source/MyNotepadNotif/app/src/test/java/com/lauriewired/mynotepadnotif/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/app/src/test/java/com/lauriewired/mynotepadnotif/ExampleUnitTest.java -------------------------------------------------------------------------------- /source/MyNotepadNotif/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/build.gradle.kts -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradle.properties -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradle/libs.versions.toml -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradlew -------------------------------------------------------------------------------- /source/MyNotepadNotif/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/gradlew.bat -------------------------------------------------------------------------------- /source/MyNotepadNotif/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/MyNotepadNotif/settings.gradle.kts -------------------------------------------------------------------------------- /source/ipc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LaurieWired/BinderIPC/HEAD/source/ipc.jpg --------------------------------------------------------------------------------