{"id":19294272,"url":"https://github.com/mdecker-mobilecomputing/ionic_tagebuch","last_synced_at":"2026-05-18T09:12:38.194Z","repository":{"id":119792457,"uuid":"360669971","full_name":"MDecker-MobileComputing/Ionic_Tagebuch","owner":"MDecker-MobileComputing","description":"Simple Ionic app for Android to demonstrate usage of capacitor plugin.","archived":false,"fork":false,"pushed_at":"2021-04-27T20:22:50.000Z","size":1079,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-24T00:27:07.998Z","etag":null,"topics":["capacitor","ionic"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MDecker-MobileComputing.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-22T20:12:16.000Z","updated_at":"2021-04-27T20:22:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"a948990d-a195-46d9-b318-bbf5d4f0de78","html_url":"https://github.com/MDecker-MobileComputing/Ionic_Tagebuch","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MDecker-MobileComputing/Ionic_Tagebuch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Tagebuch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Tagebuch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Tagebuch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Tagebuch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MDecker-MobileComputing","download_url":"https://codeload.github.com/MDecker-MobileComputing/Ionic_Tagebuch/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MDecker-MobileComputing%2FIonic_Tagebuch/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278337273,"owners_count":25970482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["capacitor","ionic"],"created_at":"2024-11-09T22:37:45.469Z","updated_at":"2026-05-18T09:12:38.188Z","avatar_url":"https://github.com/MDecker-MobileComputing.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ionic app to demonstrate usage of a Capacitor plugin #\r\n\r\n\u003cbr\u003e\r\n\r\nThe repository contains an Ionic app for Android which is a very simple diary app.\r\nAll texts entered are written into a text file on the filesystem of the Android device,\r\nfor which the Capacitor plugin [filesystem](https://capacitorjs.com/docs/v3/apis/filesystem)\r\nis used, see also [here](https://www.npmjs.com/package/@capacitor/filesystem).\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## Screenshots ##\r\n\r\n\u003cbr\u003e\r\n\r\n![Screenshot 1](screenshot_1.png) \u0026nbsp; ![Screenshot 2](screenshot_2.png)\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## Adding the plugin ##\r\n\r\n\u003cbr\u003e\r\n\r\nUpdate to capacitor 3.x if needed (see also [here](https://capacitorjs.com/docs/v3/updating/3-0)):\r\n```\r\nnpm install @capacitor/cli@next @capacitor/core@next\r\n```\r\n\r\n\u003cbr\u003e\r\n\r\nAdding the plugin to the project:\r\n```\r\nnpm install @capacitor/filesystem\r\nnpx cap sync\r\n```\r\n\r\n\u003cbr\u003e\r\n\r\nGet list of project's plugins:\r\n```\r\nnpx cap ls android\r\n```\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## Entries needed in Manifest file of Android application ##\r\n\r\n\u003cbr\u003e\r\n\r\nFor using the plugin `filesystem` in the app the following things in the [Manifest file](android/app/src/main/AndroidManifest.xml) have to be changed:\r\n\r\nAllowing access to folder `Documents` as of Android 10:\r\n```\r\nandroid:requestLegacyExternalStorage=\"true\"\r\n```\r\n\r\nDeclaring permission:\r\n```\r\n\u003cuses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\" /\u003e\r\n```\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## Text editor app ##\r\n\r\n\u003cbr\u003e\r\n\r\nThe following app can be used to open the text file created by this app: \r\nhttps://f-droid.org/de/packages/org.billthefarmer.editor/\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## Using Live Reload ##\r\n\r\n\u003cbr\u003e\r\n\r\nEnsure that NPM module [native-run](https://www.npmjs.com/package/native-run) is installed globally.\r\nIf it is not installed, then you can install it using the following command:\r\n```\r\nnpm install -g @ionic/cli native-run\r\n```\r\n\r\n\u003cbr\u003e\r\n\r\nFor using *Live Reload* you then have to call the following command (*Android Studio* should be running but no project opened when entering this command):\r\n```\r\nionic cap run android -l --external\r\n```\r\nAt startup of this command you will have to select a local IP address.\r\nAfter this the project will be opened in *Android Studio*.\r\nStart the app in the emulator by clicking on the \"Run\" button in *Android Studio*.\r\n\r\n\u003cbr\u003e\r\n\r\nWhen you now save a changed file of the Ionic application, then the app in the emulator will be refreshed and uses the changed file(s) afterwards.\r\n\r\n\u003cbr\u003e\r\n\r\n----\r\n\r\n## License ##\r\n\r\nSee the [LICENSE file](LICENSE.md) for license rights and limitations (BSD 3-Clause License) for the files in this repository.\r\n\r\n\u003cbr\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_tagebuch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_tagebuch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmdecker-mobilecomputing%2Fionic_tagebuch/lists"}