Open source android repository

Погружаемся в opensource-экосистему Android

Каждый выбирает свой «уровень погружения». Вам не обязательно следовать каждому пункту из этого поста. Моя цель — показать, насколько хорошо развита экосистема на данный момент и чего вы можете и не можете от неё получить. Делайте выводы самостоятельно. Хотите — меняйте прошивку полностью и переходите на microg. Хотите — просто поставьте на свой телефон f-droid прямо рядом с gplay. Хотите — не делайте ничего.

Давайте поговорим об экосистеме приложений свободных приложений с открытым исходным кодом на Android. Попробуем установить MicroG — свободную реализацию сервисов Google на Android. Посмотрим, как и зачем со всем этим жить.

Несколько причин, почему стоит об этом задуматься

Google Play далеко «не торт»

Далеко ходить не нужно, в соседних постах можно найти множество примеров того, как разработчиков выгоняют из Google Play по тем или иным причинам, заставляя общаться с ботами без возможности реальной аппеляции. Некоторые типы приложений теперь принципиально невозможно распространять (например, блокировщики рекламы, да и в принципе приложения обхода любых ограничений).

Мне, как параноику, не нравится, что у стороннего лица появляется практически полный доступ к моему устройству. Google способен как минимум удалить с моего телефона любое приложение в любой момент и собрать с него произвольные данные. Более того, google play service — это огромное (стандартная поставка — 600Мб, минимальная — 95Мб) количество постоянно обновляющегося кода, часть которая работает с системными привилегиями. Для сравнения, дистрибутив MicroG может весить всего 4Мб.

Низкое качество приложений в google play, засилие рекламы, телеметрий, шпионских модулей, уязвимостей

Я, конечно, и раньше был не очень высокого мнения о среднестатистическом приложении для андроида, но был серьёзно удивлен своим новым телефоном одного китайского производителя. После покупки, мне пришлось три дня ходить со стоковой прошивкой из-за ограничений разблокировки (вот она — еще одна причина не доверять свои устройства компаниям). Я честно не понимаю, почему этим пользуются и почему это любят. Мне постоянно (несколько раз в час) приходили непонятные уведомления (дайте разрешение, обновите меня, реклама). Что-то постоянно обновлялось. Стоковый браузер в один момент просто перестал работать.

Энергопотребление

Исходит из предыдущего тезиса. Если приложения не загружают рекламу, не отправляют статистику и не следят за вами, они потребляют меньше электроэнергии. Это же касается gapps: зачастую, они являются главным потребителем электроэнергии. Да, Google в последнее время серьёзно работает над энергопотреблением. Однако, во-первых, не у всех есть возможность использовать актуальные версии Android. Во-вторых, даже в этих условиях замена gapps на более простое и минималистичное решение позволит вам еще сильнее продлить жизнь от батарейки.

Вторая жизнь старым устройствам без большого количества ОЗУ и/или места на диске?

Тоже логичное продолжение предыдущих моментов. Случалось ли с вами такое, что на бюджетном устройстве после очередного обновления gapps вообще не остается места ни на приложения, ни на пользовательские данные? Даже если на вашем не очень свежем устройстве еще достаточно свободных ресурсов, избавление от gapps позволит освежить его.

Несколько подводных камней, с которыми ничего не сделать

Немного матчасти

Google Play Services, gapps, Google Play. Включают в себя как базовые сервисы, необходимые для работы push-уведомлений, геолокации, синхронизации различных данных с Google так и остальной пользовательский софт, использующий всё это (например, Gmail).

Тип уведомлений, работающий через сторонний сервер. Позволяет значительно экономить батарейку, т.к. устройство может полностью заснуть и просыпаться через небольшие промежутки времени, проверяя только одно сетевое соединение на наличие новых событий.

По умолчанию, устройства на Android идут с заблокированным загрузчиком. Обычно, требуется произвести эту процедуру, чтобы иметь возможность устанавливать любые другие прошивки. Разблокировка загрузчика обычно не только даёт возможность модифицировать системные разделы, но и отключает проверку подписи ядра при загрузке.

Права суперпользователя. Точно так же, по умолчанию обычно их нет и необходимо их получать тем или иным способом. Либо установкой прошивки (для lineageos есть addon-su), либо magisk. Обычно в инструкциях предлагают ставить проприетарный и купленный китайцами SuperSU (мы их слушать не будем и поставим опенсорсный magisk). В особо тяжелых случаях иногда приходится использовать эксплоиты (вроде KingRoot).

Позволяет устанавливать прошивки и их модификации в виде zip-архивов. Обычно это TWRP, тоже проект с открытым исходным кодом.

Помимо предоставления root, имеет встроенный модуль для скрытия этого самого root от некоторых приложений (полезно для банк-клиентов) и большое множество сторонних модулей. В контексте этого поста для нас будет самым полезным модуль для установки Xposed.

Если Magisk предоставляет модули для модификации базовой системы, то xposed предоставляет модули для модификации и патчинга на лету самого Android. В контексте этого поста будет полезным модуль FakeGapps. Рекомендую ставить его через Magisk, и для конкретной API-версии (соответствующей вашей версии android). К сожалению, обычно поддержка прошивок отстает на одну версию android.

Каталог открытого ПО для Android. Можно использовать как официальный репозиторий, так и сторонние.

Флагман среди opensource-прошивок. Бывший Cyanogenmod.

На каких устройствах это будет работать?

Условно все устройства можно поделить на следующие классы (в порядке убывания удобности):

  • Устройства с официальной поддержкой lineageos. Наличие официального порта обычно является не только гарантией более-менее нормальной работы, но и наличия множества других прошивок под это устройство. Естественно, лучше проверять информацию (и о наличии прошивок, и о возможных сюрпризах) на 4pda/xda до покупки. К сожалению, совсем новых устройств вы там обычно не увидите.
  • Устройства с неофициальными портами lineageos/других прошивок. Обычно, немного хуже, но жить все равно можно.
  • Устройства без сторонних прошивок, но с root. Сложнее избавляться от bloatware и gapps (однако, с NanoDroid это теперь можно делать в автоматическом режиме). Никаких гарантий, что вы удалили все вредоносные приложения от производителя.

При выборе устройства так же нужно смотреть на:

  • Собственно покрытие прошивками. Хорошее коммьюнити вокруг телефона обычно дает более крепкие гарантии на обновление прошивки, чем типичный производитель.
  • Некоторые производители ограничивают возможность разблокировки загрузчика.
    • Например, у xiaomi присутствует задержка от нескольких дней до недель от привязки телефона к аккаунту до первой разблокировки.
    • Huawei недавно в принципе перестала выдавать коды разблокировки (особо не разбирался, как минимум для нескольких устройств). Фу на них, но за несколько долларов до сих пор можно купить код разблокировки на стороне.

MicroG

MicroG — открытая реализация gapps. Обеспечивает работу push-уведомлений, api геолокации в использующих это приложениях. Список поддерживаемых api.

Читайте также:  Проектор unic f30 android

Для работы требуется функциональность подделки подписи в прошивке. Способы установки, примерно соответствующие градации устройств выше:

Можно установить LineageOS for MicroG и получить практически все перечисленное практически из коробки. Самый простой и удобный способ из всех, рекомендую использовать именно его, если ваше устройство есть в списке поддерживаемых.

Можно установить MicroG вручную на любую прошивку, не идущую в комплекте с gapps (почти любая не стоковая прошивка). Однако, в прошивке требуется поддержка подмены подписей (Signature Spoofing).

  • Смотрите инструкции. В довольно большом списке прошивок эта функциональность есть из коробки, достаточно только поставить сверху MicroG.
  • Остальные прошивки придется тем или иным способом патчить.
    • Самый удобный способ — модуль для XPosed FakeGapps. Не требует модификации самой системы.
    • Способы с модификацией системы. Не рекомендую, т.к. у меня это приводило к проблемам с производительности, но не могу сказать, правило это или исключение. Необходимо повторять после каждого обновления.
      • Способы патчинга на самом телефоне (nanodroid-patcher) занимают достаточно много времени (перекомпиляция достаточно жирного системного файла), но являются вторыми по удобству. У меня это приводило к проблемам с производительности, не рекомендую.
      • Способы патчинга с участием компьютера. Еще менее удобны, но при этом быстры, т.к. пересборка происходит на ПК. Требуют подключения телефона к ПК.

Не планировал описывать полную инструкцию, но опыт предыдущего поста показывает, что придется.

Процесс установки зависит от способа. Про установку при помощи NanoDroid чуть ниже, здесь описана ручная процедура:

  • Удалить gapps, если они есть. Например, при помощи приложения /d/gapps
  • Установить собственно необходимые apk. Из репозитория microg или NanoLx.
    • GmsCore.apk («MicroG Services core» из репозитория). На Android 7 и выше это приложение нужно сделать системным (при помощи приложения или модуля magisk systemize), если вы хотите пользоваться бекендами поиска местоположения.
    • GmsProxy.apk («MicroG Services Framework proxy» из репозитория)
    • Одну из реализаций PlayStore (это обязательно)
      • Приложение-заглушку FakeStore. Заглушке в настройках необходимо дать доступ на подделку подписей. В последний раз у меня с этим возникли какие-то проблемы, поэтому можно сделать adb shell pm grant com.android.vending android.permission.FAKE_PACKAGE_SIGNATURE с ПК или просто pm grant com.android.vending android.permission.FAKE_PACKAGE_SIGNATURE с телефона.
      • Переподписанный Google Play Store. Да, это возможно! Но такой apk предоставляет только репозиторий NanoLX.
    • Бекенды местоположения, если нужно. Например, MozillaNlpBackend. Позволяет телефону быстро определять своё местонахождение без GPS.

После установки и перезагрузки, необходимо зайти в настройки microg и пройтись по чеклисту, дать все необходимые разрешения. Мне на Android 9 понадобилось набрать *#*#2432546#*#* , без этого регистрация пуш-уведомлений не производилась. Тестировать работу можно при помощи Push notifications tester.

NanoLX NanoDroid

Пожалуй, самый простой и удобный способ установить MicroG. Помимо основных возможностей (удаление gapps и установка microg) имеет несколько приятных фич:

  • Удаление стандартных приложений и замена их на opensource-аналоги. Удобно, когда у вас телефон на условном MTK с сильно замусоренной стоковой прошивкой.
  • Установка Fdroid, YalpStore/AuroraStore с системными правами
  • Возможная установка патченного Google Play, совместимого с microG.

Достаточно установить несколько из следующих файлов:

  • NanoDroid: основной установщик. Устанавливает всё.
  • NanoDroid-setupwizard: графическая настройка основного установщика. Позволяет выбрать, какие компоненты будут установлены и какие действия будут совершены. Работает только на устройствах с arm/arm64.
  • NanoDroid-BromiteWebView: заменяет системный WebView на BromiteWebView со встроенной блокировкой рекламы.
  • NanoDroid-OsmAnd: устанавливает OsmAnd+.
  • NanoDroid-microg: устанавливает только microG.
  • NanoDroid-fdroid: устанавливает только FDroid и расширение, позволяющее устанавливать и обновлять приложения в фоновом режиме.
  • NanoDroid-patcher: включает поддержку Signature Spoofing (см выше).
  • NanoDroid-uninstaller: удаление ранее установленного.

Установка приложений из google play

Как было отмечено выше, есть несколько способов решения проблемы.

  • Можно установить патченную версию оригинального Google Play и жить, как обычно. Должно работать всё, включая микроплатежи в приложениях.
  • Aurora Store. Прекрасное, красивое, быстрое приложение. Может многое (из основного нужного — установка, обновление бесплатных приложений). Пока в бете и имеет некоторые проблемы со скачиванием через анонимный аккаунт (используйте свой неанонимный или пока обойтесь Yalp Store, это практически то же самое, но без красивого интерфейса и с еще более скромными системными требованиями (до сих пор поддерживается Android 2+)
  • PlayMaker позволяет на вашем сервере развернуть f-droid репозиторий с нужными вам приложениями из google play. Управление скачиваемыми приложениями производится через веб-интерфейс. Имеет очевидные ограничения, но очень удобен, если вы нечасто устанавливаете новые приложения и нуждаетесь лишь в способе их удобного обновления.
  • 4pda app&game: Безумное приложение, однако, предоставляющее быстрый доступ к обновлению ваших приложений. Может быть полезным тем, что на 4pda обычно выкладывают не только оригинальные версии, но и модифицированные (например, с удаленной рекламой). Лично я не одобряю, но знаю, что этим пользуются.
  • APKPure Сторонний сервис-зеркало Google Play. Не был замечен за перепаковкой приложений (подписи совпадают с оригинальными), но нет никаких гарантий, что так будет продолжаться и дальше.

Очень небольшой начальный набор из качественных opensource-приложений

Update: только что появился пост с более широким обзором приложений.

Вместо выводов

Лично мне переход на MicroG, F-Droid и AuroraStore дал тот Android, о котором я всегда мечтал. С удобными приложениями, не напичканными рекламой и телеметрией, позволяющие мне не делиться своими данными с Google, но при этом работающими push-уведомлениями, позволили перестать мечтать о недостижимом (смене мобильной ОС на Sailfish/ubuntu phone/etc, где все бы равно для полноценной работы приходится использовать слой для поддержки Android-приложений) и начать жить.

Надеюсь, эта инструкция поможет вам понять, нужно ли вам это в принципе и успешно повторить этот результат.

Источник

Open source android repository

Awesome Android Open-Source Projects

👓 A curated list of awesome android projects by open-source contributors.

Awesome Android Open-Source Projects aims to be the starting point for those who are new to the world of Open-Source and want to contribute for the same. It also serves experienced contributors to participate and contribute in the mentioned list of projects.

☘️ Categories

  • Android TV is a version of the Android operating system. It is developed by Google for soundbars, set-top boxes, digital media players, and TVs with native applications.Movie Paradise is an Android TV app. Application is using The Movie Database.
  • SmartYouTubeTV: A YouTube client for set-top boxes and Android-based TVs.
  • This repository consists of multiple samples showing best practices in app development on Android TV.
  • Vineyard is an unofficial Vine client for Android TV.
  • This is a watch face for Android Wear based on the typeface used for the FORM design conference.
  • Smart Alarm is a privacy-focused sleep tracker with powerful features and works without an internet or phone connection.
  • Twelveish is a unique Wear OS (Android Wear) Watch Face that displays the approximate time in words (in multiple languages).
  • Get notifications from your favourite subreddits right on your android wearable.
  • Multiple samples showing best practices in app and watch face development on Wear OS.
  • Unofficial Foursquare® Client for Android Wear.
  • Android Application to track any user activity on Github built using the Github Developers Api. The tools used for implementations — Github Developers Api, Kotlin, Coroutines, MVVM, Glide, Retrofit.
  • This repository contains a detailed sample app that implements MVP architecture using Dagger2, GreenDao, RxJava, FastAndroidNetworking, PlaceHolderView and AndroidDebugDatabase.
  • This repository contains a detailed sample app that implements MVVM architecture using Dagger2, Room, RxJava, FastAndroidNetworking, PlaceHolderView and AndroidDebugDatabase.
  • This repository showcases and compares different architectural patterns that can be used to build Android apps. The exact same sample app is built three times with different architectures.
  • Android architecture sample with dynamic feature modularisation, clean architecture with MVI (Uni-directional data flow), dagger hilt, DFM Navigation, kotlin coroutines with StateFlow and Exo player.
  • Kotlin MVP clean architecture for Android using Koin, Room and RxJava2
  • Android example with Clean Architecture by layer.
  • Foodium is a sample food blog Android application built to demonstrate use of Modern Android development tools — (Kotlin, Coroutines, Flow, Dagger 2, Architecture Components, MVVM, Room, Retrofit, Moshi, Material Components).
  • App that interacts with a Rest Api. Architecture is MVVM.
Читайте также:  Андроид спидометр для машины
  • The official Android app for IRCCloud.com
  • Jetchat is a sample chat app built with Jetpack Compose.
  • An example project to demonstrate how to build WhatsApp using Jetpack Compose.
  • K-9 Mail is an open-source email client for Android.
  • Native Android port of the KDE Connect Qt app
  • QKSMS is an open source replacement to the stock messaging app on Android. It is currently available on the Google Play Store and on F-Droid
  • Minimal text messenger with a ton of features.
  • Signal is a messaging app for simple private communication with friends.
  • Telegram is a messaging app with a focus on speed and security. It’s superfast, simple and free. This repo contains the official source code for Telegram App for Android.
  • Android instant messenger using Tinode backend. Beta-quality software. Debug APKs are available in releases.
  • Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices.
  • The project in this repository contains the Wire for Android client project.
  • An Android app that lets you download free children’s books in different languages from non-profit publisher Book Dash
  • Comic reader app. Learning MVVM / MVI with RxKotlin, Retrofit, Kotlin Coroutine, Work Manager, Room, Firebase, AndroidX, Clean Architecture.
  • A cool, modern client app for the anime tracking website Hummingbird.me
  • Free and open source manga reader for Android
  • This is the official repository of AntennaPod, the easy-to-use, flexible and open-source podcast manager for Android.
  • Jetcaster is a sample podcast app, built with Jetpack Compose. The goal of the sample is to showcase dynamic theming and full featured architecture.
  • Movie discovery app showcasing MVP, RxJava, Dagger 2 and Clean Architecture
  • Movie Android App written in Kotlin, MVVM, RxJava, Android Architecture Components.
  • A libre lightweight streaming front-end for Android.
  • A material designed music player for Android
  • Shuttle is an open source, local music player for Android.
  • A light-weight and minimalist music player for Android
  • Material Design Music Player
  • A minimalistic movie listing app to browse IMDB’s top 250 movies, built to demonstrate MVVM with latest hot-trending Android development tools.
  • TvFlix android app using Dagger Hilt, Coroutines, Jetpack(Room, ViewModel, Paging, LiveData) based on MVVM architecture purely written in Kotlin.
  • Bitcoin Wallet app for your Android device. Standalone Bitcoin node, no centralized backend required.
  • CoCoin, Multi-view Accounting Application
  • App written in Kotlin for budget tracking.
  • Finance Manager is an Android Application which contains Income Tax Calculator and EMI Calculator.
  • GnuCash Android is a companion expense-tracker application for GnuCash (desktop) designed for Android. It allows you to record transactions on-the-go and later import the data into GnuCash for the desktop.
  • Kripto is cryptocurrency and exchanges app for Android, written in Kotlin and made using Coingecko’s API.
  • Currency Exchange App displays real-time currency rates, shows a chart for any currency pair.
  • This is the Android port of the 2048 game made by Gabriele Cirulli.
  • Traditional roguelike game with pixel-art graphics and simple interface
  • Google Santa Tracker app for Android is an educational and entertaining tradition that brings joy to millions of children (and children at heart) across the world over the December holiday period.
  • Cuboidal Drift is a casual, fun android game with cool looking graphics, made by Virej Dasani.

🏋️ Health & Fitness

  • Android based heart rate monitor which uses the camera and its flash to determine the users heart rate in beats per minute.
  • Lightweight pedometer app for Android using the hardware step sensor
  • Track your sport activities with RunnerUp using the GPS in your Android phone.
  • Accompanist is a group of libraries that contains some utilities which I’ve found myself copying around projects which use Jetpack Compose.
  • An easy-to-use Android charts library with animation.
  • A library for debugging android databases and shared preferences — Make Debugging Great Again
  • Bind Android views and callbacks to fields and methods.
  • A fast dependency injector for Android and Java.
  • Event bus for Android and Java that simplifies communication between Activities, Fragments, Threads, Services, etc. Less code, better quality.
  • ExoPlayer is an application level media player for Android. It provides an alternative to Android’s MediaPlayer API for playing audio and video both locally and over the Internet. ExoPlayer supports features not currently supported by Android’s MediaPlayer API, including DASH and SmoothStreaming adaptive playbacks.
  • Android filter library -This library has 16 filters which can be applied to image bitmaps.
  • An image loading and caching library for Android focused on smooth scrolling
  • A Java serialization/deserialization library to convert Java Objects into JSON and back
  • This repository is the home of the next generation of JUnit, JUnit 5.
  • Simple, pretty and powerful logger for android
  • Render After Effects animations natively on Android and iOS, Web, and React Native
  • A Beautiful Multipurpose Motion Toast Library in Android using Kotlin heart_eyes
  • A powerful Android chart view / graph view library, supporting line- bar- pie- radar- bubble- and candlestick charts as well as scaling, panning and animations.
  • Square’s meticulous HTTP client for Java and Kotlin.
  • A powerful image downloading and caching library for Android
  • A SeekBar suited for showing a preview of something. As seen in Google Play Movies.
  • A type-safe HTTP client for Android and the JVM
  • RxJava – Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.
  • The usual Toast, but with steroids
  • An beautiful Zoom Animation Library for RecyclerView Items in Android using Kotlin.
  • ZXing («Zebra Crossing») barcode scanning library for Java, Android
  • Android Library to make it easy to add ReactButton feature in your app with Multi Reactions.
  • Android Library to create Lottie animation view dialog easily with a lot of customization.
Читайте также:  Настроить переключение клавиатуры андроид
  • Android TensorFlow MachineLearning Example (Building TensorFlow for Android)
  • The official Wikipedia app for Android!
  • Playground project for the Jetpack Compose APIs
  • Pokedex on Jetpack Compose
  • An app to stay up to date with the latest stats of the coronavirus , using Kotlin with MVVM ,Coroutines , Android Architecture Components and Dagger
  • CrashReporter is a handy tool to capture app crashes and save them in a file.
  • The Google I/O 2019 Android App
  • Jetsurvey is a sample survey app, built with Jetpack Compose. The goal of the sample is to showcase text input, validation and state capabilities of Compose.
  • Crowdfunding app concept for Android. Created to showcase new trends in Android development with strong focus on Material Design.
  • LeafPic is a fluid, material-designed alternative gallery, it also is ad-free and open source under GPLv3 license. It doesn’t miss any of the main features of a stock gallery, and we also have plans to add more useful features.
  • MoonShot is a SpaceX companion app to help you keep up with their launches. It uses the SpaceX API to fetch data.
  • Native version of Open Food Facts on Android — Coders & Decoders welcome
  • An Android app which provides design news & inspiration as well as being an example of implementing material design.
  • Android Pokedex using Dagger Hilt, Motion, Coroutines, Flow, Jetpack (Room, ViewModel, LiveData) based on MVVM architecture.
  • Ride-Sharing Uber Lyft Android App — Learn to build a ride-sharing Android Taxi Clone App like Uber, Lyft — Open-Source Project By MindOrks
  • An Android app which shows timeline of upcoming rocket launches and showcases architecture of real application.
  • Hacker News reader for Android, written in Compose
  • Flym News Reader is a light Android feed reader (RSS/Atom)
  • Jetnews is a sample news reading app, built with Jetpack Compose. The goal of the sample is to showcase the current UI capabilities of Compose.
  • A material-design Hacker News Android reader
  • A localized News reader Android app powered by newsapi.org
  • Android News Application built in kotlin: MVI+Dagger+NetworkBoundResource+ViewModel+Livedata.
  • News App built with Jetpack Compose
  • Android client for the Nextcloud news/feed reader app.
  • A Simple Demonstration of the New York Times App using Jsoup web crawler with MVVM Architecture
  • ☑️ Student Utility Mobile App. Features: Mark Attendance, View Time Table, Create Tasks.
  • Material design file manager for Android
  • Another Android Explorer ( File Manager ) is an All-in-One Open source file manager. AnExplorer File Manager (File Explorer) is designed for all android devices including Phones, Phablets, Tablets, Chromecast, Wear OS, Android TV and Chromebooks. It’s a fully designed with Material guidelines by Google.
  • Clean Architecture by layer
  • Jetpack compose shopping list app
  • Joplin — an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS.
  • A jetpack compose clone of Android 10 Calculator UI
  • A modern, easy and customizable app manager for Android with Material Design
  • Open source note-taking application for Android
  • The ownCloud Android App
  • Simple yet powerful rich note taking android application, with a lot of flexibilty of usage.
  • Open source link manager with folders and widget feature and sort links depend on usage.
  • Use the sensors in your mobile devices to perform science experiments.
  • Android screen filter app for night time phone use.
  • A simple sound recording app implementing Material Design
  • Simple and powerful File Editor for Android. All is licensed under the GPLv3 license.
  • Wally is a fast and efficient wallpaper application for Android
  • CycleStreets is a UK-wide cycle journey planner system, which lets you plan routes from A to B to C by bike. It is designed by cyclists, for cyclists, and caters to the needs of both confident and less confident cyclists.
  • The public transport companion that respects your privacy and your freedom. Transportr is a non-profit app developed by people around the world to make using public transport as easy as possible wherever you are.
  • Travel Mate is an android app for travellers. It provides features like choosing the correct destination, making bookings, and organizing the trip. It provides solutions for every problem a traveller might face during their journey. It provides a comprehensive list of information about a destination: current weather, best places to hangout, and city’s current trends.
  • Monitors and records the CPU and memory usage of Android devices
  • AuthPass — Password Manager based on Flutter for all platforms. Keepass 2.x (kdbx 3.x) compatible.
  • A library to include ‘EarthView with Google’ into your application with ease.
  • An app to convert images to PDF file!
  • Memento Calendar is a modern namedays app for Android. This repository contains the source code of Memento Calendar.
  • Stitch your photos together vertically or horizontally easily!
  • A simple calendar with events, customizable widgets and no ads.
  • Minimal, simple and beautiful alarm clock thoughtfully designed by nap enthusiasts.
  • Android client for Travis CI
  • Share Wi-Fi passwords with QR codes or NFC tags
  • Weather App that uses Android best practices. Android Jetpack, clean architecture. Written in Kotlin
  • Open source weather app for Andorid
  • Minimal weather app for Android
  • Simple Weather app for Android following MVVM architecture, and Jetpack Component like Room etc.
  • Weather app to get current weather info of any city around the globe using OpenWeatherMap API.
  • Weather Forecast App implemented in MVP Architecture using Kotlin that enable users to have instant access to weather data.

🎯 HacktoberFest

Hacktoberfest is a month-long celebration of open source software organized by DigitalOcean in partnership with GitHub and Dev. Hacktoberfest is open to everyone in our global community. Whether you’re new to development, a student, long-time contributor, event host, or company of any size, you can help drive growth of open source and make positive contributions to an ever-growing community. All backgrounds and skills levels are encouraged to complete the challenge.

To qualify for the official Hacktoberfest swag options, you must register and make four pull requests between October 1-31. Pull requests can be made to any public repository on GitHub, not just the ones with issues labeled Hacktoberfest. If a maintainer reports your pull request as spam or behavior not in line with Hacktoberfest’s quality standards, you will be ineligible to participate.

You can also check the swag-list and other companies giving away swags for HacktoberFest.

Источник

Оцените статью