├── .gitignore ├── LICENSE ├── PRIVACY.md ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── digital │ │ └── ventral │ │ └── ips │ │ ├── BaseService.kt │ │ ├── ClientService.kt │ │ ├── ClientServiceStarter.kt │ │ ├── EncryptionUtils.kt │ │ ├── MainActivity.kt │ │ ├── ServerService.kt │ │ ├── SettingsActivity.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ └── ic_launcher_monochrome.xml │ ├── layout │ └── settings_activity.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-ar │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-zh │ └── strings.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ ├── data_extraction_rules.xml │ └── root_preferences.xml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── metadata ├── ar │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── de-DE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── en-US │ ├── changelogs │ │ └── 1.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.drawio │ │ ├── featureGraphic.jpg │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── screenshot-client-notifications.png │ │ │ ├── screenshot-main-activity.png │ │ │ ├── screenshot-server-notification.png │ │ │ ├── screenshot-settings-activity.png │ │ │ └── screenshot-share-from-gallery.png │ ├── short_description.txt │ └── title.txt ├── es-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── fr-FR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── it-IT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ja-JP │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ko-KR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── pt-PT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ru-RU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt └── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/BaseService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/BaseService.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ClientService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ClientService.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ClientServiceStarter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ClientServiceStarter.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/EncryptionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/EncryptionUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ServerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ServerService.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/digital/ventral/ips/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/java/digital/ventral/ips/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/settings_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/layout/settings_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/root_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/app/src/main/res/xml/root_preferences.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/gradlew.bat -------------------------------------------------------------------------------- /metadata/ar/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ar/full_description.txt -------------------------------------------------------------------------------- /metadata/ar/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ar/short_description.txt -------------------------------------------------------------------------------- /metadata/ar/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/de-DE/full_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/de-DE/short_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/changelogs/1.txt -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/featureGraphic.drawio -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/featureGraphic.jpg -------------------------------------------------------------------------------- /metadata/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-client-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-client-notifications.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-main-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-main-activity.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-server-notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-server-notification.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-settings-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-settings-activity.png -------------------------------------------------------------------------------- /metadata/en-US/images/phoneScreenshots/screenshot-share-from-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/images/phoneScreenshots/screenshot-share-from-gallery.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/es-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/es-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/fr-FR/full_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/fr-FR/short_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/it-IT/full_description.txt -------------------------------------------------------------------------------- /metadata/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/it-IT/short_description.txt -------------------------------------------------------------------------------- /metadata/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ja-JP/full_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ja-JP/short_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ko-KR/full_description.txt -------------------------------------------------------------------------------- /metadata/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 안드로이드 프로필 간 간편한 미디어/텍스트 공유 -------------------------------------------------------------------------------- /metadata/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/pt-PT/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/pt-PT/short_description.txt -------------------------------------------------------------------------------- /metadata/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ru-RU/full_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/ru-RU/short_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /metadata/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/metadata/zh-CN/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 在 Android 用户档案之间轻松分享媒体和文本 -------------------------------------------------------------------------------- /metadata/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Inter Profile Sharing -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VentralDigital/InterProfileSharing/HEAD/settings.gradle.kts --------------------------------------------------------------------------------