Android web browser app focused on easy search and clear history
Light web browser app. Browse the web and stay incognito.
- Light / Dark theme
- Floating window
- Clear all cache / history
- Ad blocker
- Multiple search engines supported as Google, DuckDuckGo, Yahoo, Qwant...
G Browser is an app focused on quick search. This application is open source on github !!! Do not hesitate to submit merge request, open issue...
Developed in kotlin with <3 by Team Mercan. Try the app via the Play Store.
Enjoy G Browser =)
./apphere
Module of the Android app for mobile and tablet devices. Apk generated is produced on the PlayStore or downloadable in the release section.
./confighere
Contains all the shell scripts, extra gradle files, authentication, signature...
./config/play-storehere
Automatic publish Android app bundle on the play store.
./config/qualityhere
Code quality gradle tools.
./config/screenshothere
Automatic tool to take ./app screenshot for multiple locales and themes.
./config/signinghere
App signing data.
./gradle/wrapperhere
Default location of gradle wrapper. All Android Studio and gradle project have this kind of folder.
./tvhere
Module of the Android TV devices. This module development is not ready to be used.
./wearhere
Module of the Android Wear app for Wear OS. This module development is not ready to be used.
- Build Debug
- Run
./gradlew app:assembleDebug
- Run
- Build release candidate (RC)
- Add the jks in the
./config/signing/browser.jks - Complete
./config/signing/signing.gradle - Run
./gradlew app:assembleRelease
- Add the jks in the
- Build release
- Add the jks in the
./config/signing/browser.jks - Complete
./config/signing/signing.gradle - Run
./gradlew app:bundleRelease
- Add the jks in the
- Build and publish alpha release on the Play Store
- Add the jks in the
./config/signing/browser.jks - Complete
./config/signing/signing.gradle - Read ./config/play-store/README.md
- Run
./config/play-store/publish.sh
- Add the jks in the
- Take screenshots to publish on the store
- Read ./config/screenshot/README.md
./config/screenshot/screenshot.sh
- Check dependencies updates
./gradlew dependencyUpdates -Drevision=release -DoutputFormatter=json: Check dependencies:
- Check unit tests
./gradlew :app:assembleDebug :app:testUniversalDebugUnitTest: Unit tests
Java typo, fields without m prefix.
In order to have a clean commit list and to easily find feature of a commit (goal, fix bug...), the commit message should respect some rules. Commit messages are important. They are the only way to give context to the changes that are made in a commit.
- Mandatory rules:
[Player] Improve the player X controlwhere the[and]surround the feature. - Optional rules emoji:
[Player] :fire: Fix the player X controlwhere emoji could be the one you want or one of this one:- ๐ฅ
:fire:Fix a bug. - ๐ง
:wrench:Feature dev that is not ui. - ๐จ
:art:UI commit, readme, all that is visible. - โป๏ธ
:recycle:Clean, reformat, refactor, ortho, typo... - ๐ฑ
:seedling:New feature, first commit.
- ๐ฅ
- Optional: Write the
Why, theReasonof your commit in the message description.
Do our future selves a favour and start writing better commit messages now :)