{"id":19665272,"url":"https://github.com/alttch/evahi","last_synced_at":"2026-04-25T08:34:50.658Z","repository":{"id":103748681,"uuid":"170368605","full_name":"alttch/evaHI","owner":"alttch","description":"Universal, customizable android app template for web-based interfaces","archived":false,"fork":false,"pushed_at":"2023-09-05T15:08:03.000Z","size":14008,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-03T02:04:07.306Z","etag":null,"topics":["android","app","mobile","mobile-app","mobile-development","template","web-view","web-viewer"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alttch.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-02-12T18:23:14.000Z","updated_at":"2023-08-30T20:29:26.000Z","dependencies_parsed_at":"2024-11-11T16:34:15.367Z","dependency_job_id":null,"html_url":"https://github.com/alttch/evaHI","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alttch/evaHI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alttch%2FevaHI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alttch%2FevaHI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alttch%2FevaHI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alttch%2FevaHI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alttch","download_url":"https://codeload.github.com/alttch/evaHI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alttch%2FevaHI/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263245302,"owners_count":23436512,"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","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":["android","app","mobile","mobile-app","mobile-development","template","web-view","web-viewer"],"created_at":"2024-11-11T16:21:53.816Z","updated_at":"2026-04-25T08:34:50.627Z","avatar_url":"https://github.com/alttch.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"What is evaHI?\n--------------\n\nevaHI is Android application template which allow you to quickly build custom\nAndroid app viewer for your mobile web application.\n\n\u003cdiv\u003e\n\u003cimg hspace=\"5\" src=\"./examples/1.jpg\" alt=\"Interface example\" height=\"250\" /\u003e\n\u003cimg hspace=\"5\" src=\"./examples/2.jpg\" alt=\"Interface example\" height=\"250\" /\u003e\n\u003c/div\u003e\n\nWhy do I need this?\n-------------------\n\nOf course, users can just open your web application via mobile web browser.\n\nBut evaHI provides additional features:\n\n* Your web-app will look as cool as any native Android app and your custom\n  viewer app can be added to Google Play Store\n\n* You can hard-code connection parameters of your web-app or users can quickly\n  configure it with QR codes\n  \n  \u003cimg hspace=\"10\" src=\"./examples/3.jpg\" alt=\"Interface example\" height=\"350\" /\u003e\n\n* The app can automatically pass basic authentication forms\n\n* The app provides native navigation menu with custom icons and menu labels\n\n* Icons, menu labels and target URLs can be changed dynamically on your web-app\n  server so users don't need to download application updates again and again\n\n* The app can switch URLs depending is current device mode portrait or\n  landscape\n\nLooks cool. How can I build my own app?\n---------------------------------------\n\nCustomize app source:\n\n* Download evaHI source (git clone https://github.com/alttch/evaHI)\n* Edit prepare.ini file\n* Run ./prepare -D \u003cyour_app_dir\u003e\n* Build your app with Android Studio or other Android build tool\n\nHow can I customize launcher icons?\n-----------------------------------\n\nYou may either place own icons to \u003cyour_app_dir\u003e/app/src/main/res or use\n*--icon* and *--icon-round* (both must be specified) options for *prepare*\nscript.\n\nCreate configuration file on your web server\n--------------------------------------------\n\n* Create .evahi directory in your web server http root\n\n* Put there the following configuration file. The file should be named\n  config.yml, config.yaml or config.json (if JSON format is used)\n\n```yaml\nserial: 1\nindex: /index.html\nindex_landscape: /landscape.html\nhome_icon: h.jpg\nmenu:\n- {icon: pages/page1.png, name: Page 1, url: /page1.html}\n- {icon: pages/contacts.png, name: Contacts, url: /contacts.html}\n```\n\nAll icons should be placed in /.evahi/icons/ dir and have relative paths in\napp configuration.\n\nThe app caches configuration settings and icons, but reloads them if **serial**\nfield is increased.\n\nConfiguration QR codes\n----------------------\n\nUser can scan QR codes with settings to quickly configure the app. QR code\nformat is:\n\n    scheme:https|address:yourserver.com|port:443|user:test|password:123\n  \nFields _user_ and _password_ are optional.\n\nAuthentication\n--------------\n\nevaHI sends username/password only if basic authentication is set up. However,\nyour web application may detect evaHI client (checking HTTP *User-Agent* =\n'evaHI ...' header) and ask it to provide authentication credentials returning:\n\n    HTTP/1.1 401 Unauthorized\n    WWW-Authenticate: Basic realm=\"?\"\n\nThe client will repeat HTTP request with authentication headers included.\n\nAny examples?\n-------------\n\nOur [EVA ICS](https://www.eva-ics.com/) Control Center Android app is fully\nevaHI-based.\n\nsource: https://github.com/alttch/evacc/\napp: https://play.google.com/store/apps/details?id=com.altertech.evacc\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falttch%2Fevahi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falttch%2Fevahi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falttch%2Fevahi/lists"}