WordPress-Android alternatives and similar packages
Based on the "App" category.
Alternatively, view WordPress-Android alternatives based on common mentions on social networks and blogs.
-
HomeMirror
Android application powering the mirror in my house -
InstaMaterial
Implementation of Instagram with Material Design (originally based on Emmanuel Pacamalan's concept) -
uhabits
Loop Habit Tracker, a mobile app for creating and maintaining long-term positive habits -
AmazeFileManager
Material design file manager for Android -
#<Sawyer::Resource:0x00007fe2aa53a5b8>
An alternative frontend for YouTube, for Android. -
ViMusic
An Android application for streaming music from YouTube Music. -
FlyRefresh
The implementation of https://dribbble.com/shots/2067564-Replace -
Lightning Browser
A lightweight Android browser with modern navigation -
ForkHub
GitHub client for Android based on the abandoned official app -
Telecine
Record full-resolution video on your Android devices. -
Twidere-Android
Twidere is a powerful twitter client for Android 1.6+ 1 , which gives you a full Holo experience and nearly full Twitter's feature. -
Foodium ๐ฒย
๐ฒFoodium is a sample food blog Android application ๐ฑ built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, Flow, Dagger 2/Hilt, Architecture Components, MVVM, Room, Retrofit, Moshi, Material Components). -
jianshi
A Full-Stack mobile app, including Android & Server, Simple-Poem ็ฎ่ฏ. You can write poem in graceful & traditional Chinese style. -
MaterialAudiobookPlayer
Minimalistic audiobook player -
2048-android
The android port of the 2048 game (for offline playing) -
Bandhook-Kotlin
A showcase music app for Android entirely written using Kotlin language -
droidplanner
Ground Control Station for Android Devices -
FeedEx
Flym News Reader is a light Android feed reader (RSS/Atom) -
Bourbon
An MVP Dribbble client for Android Mobile, Tablet, Wear and TV. -
News-Android-App
๐ฑ:newspaper: Android client for the Nextcloud news/feed reader app -
Endoscope
Endoscope lets you to stream live video between android devices over Wi-Fi! ๐ฑ๐ฒ -
clean-status-bar
Tidy up your Android status bar before taking screenshots for the Play Store -
android-arsenal.com
Source to android-arsenal.herokuapp.com -
Leisure
Leisure is an Android App containing Zhihu Daily,Guokr Scientific,XinhuaNet News and Douban Books -
WaniKani-for-Android
An Android client application for the awesome kanji learning website wanikani.com -
AppIconNameChanger
Library to change Android launcher App Icon and App Name programmatically ! -
LeeCo
LeeCo is an awesome app for (including unlock) problems, solutions, discuss(from leetcode) and comments. -
OpenFlappyBird
An open source clone of a famous flappy bird game for Android using AndEngine -
OpenLibra-Material
OpenLibra client on Material Design -
FoldingNavigationDrawer-Android
This is a sample project present how to use Folding-Android to add Folding Efect to Navigation Drawer. -
TurtlePlayer
A Free, Fully Fledged, Open-Source Music Player for Android -
MaterialDesignColorPalette
This is a dev tool to visualize the colours of Material design defined on -
GradientDrawableTuner
๐น๏ธ See how the properties of Android's "shape" affect the Drawable's appearance, intuitively. -
HackerNews
An open source Hacker News client for Android. -
freegemas-gdx
Freegemas libGDX is an Android and Java desktop port of Freegemas, which in turn is an open source version of the well known Bejeweled. -
vanilla
Vanilla Music Player for Android (abandoned). Visit https://github.com/vanilla-music/vanilla for an actively developed fork -
PopularMovies
:movie_camera: Movie discovery app showcasing Android best practices with Google's recommended architecture: MVVM + Repository + Offline support + Android Architecture Components + Paging library & Retrofit2.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of WordPress-Android or a related project?
README
WordPress for Android
If you're just looking to install WordPress for Android, you can find it on Google Play. If you're a developer wanting to contribute, read on.
Build Instructions
- Make sure you've installed Android Studio.
- Install npm using Node Version Manager(nvm), as described in step one from the Block Editor Quickstart guide
cd WordPress-Android
to enter the working directory.cp gradle.properties-example gradle.properties
to set up the sample app credentials file.- In Android Studio, open the project from the local repository. This will auto-generate
local.properties
with the SDK location. - Recommended: The CI uses JDK11 to build the app and run the tests. Some tests won't pass on the JDK embedded in Android Studio (JDK8). You might want to set JAVA_HOME and JDK location in Android Studio to JDK11.
- Go to Tools โ AVD Manager and create an emulated device.
- Run.
Notes:
- To use WordPress.com features (login to WordPress.com, access Reader and Stats, etc) you need a WordPress.com OAuth2 ID and secret. Please read the OAuth2 Authentication section.
- While loading/building the app in Android Studio ignore the prompt to update the gradle plugin version as that will probably introduce build errors. On the other hand, feel free to update if you are planning to work on ensuring the compatibility of the newer version.
OAuth2 Authentication
In order to use WordPress.com functions you will need a client ID and a client secret key. These details will be used to authenticate your application and verify that the API calls being made are valid. You can create an application or view details for your existing applications with our WordPress.com applications manager.
When creating your application, you should select "Native client" for the application type. The "Website URL", "Redirect URLs", and "Javascript Origins" fields are required but not used for the mobile apps. Just use "https://localhost".
Once you've created your application in the applications manager, you'll
need to edit the ./gradle.properties
file and change the
wp.oauth.app_id
and wp.oauth.app_secret
fields. Then you can compile and
run the app on a device or an emulator and try to login with a WordPress.com
account. Note that authenticating to WordPress.com via Google is not supported
in development builds of the app, only in the official release.
Note that credentials created with our WordPress.com applications manager
allow login only and not signup. New accounts must be created using the official app
or on the web. Login is restricted to the WordPress.com
account with which the credentials were created. In other words, if the credentials
were created with [email protected], you will only be able to login with [email protected].
Using another account like [email protected] will cause the Client cannot use "password" grant_type
error.
For security reasons, some account-related actions aren't supported for development builds when using a WordPress.com account with 2-factor authentication enabled.
Read more about OAuth2 and the WordPress.com REST endpoint.
Build and Test
To build, install, and test the project from the command line:
$ ./gradlew assembleWordPressVanillaDebug # assemble the debug .apk
$ ./gradlew installWordPressVanillaDebug # install the debug .apk if you have an
# emulator or an Android device connected
$ ./gradlew :WordPress:testWordPressVanillaDebugUnitTest # assemble, install and run unit tests
$ ./gradlew :WordPress:connectedWordPressVanillaDebugAndroidTest # assemble, install and run Android tests
Directory structure
.
โโโ libs # dependencies used to build debug variants
โโโ tools # script collection
โโโ gradle.properties # properties imported by the build script
โโโ WordPress
โ |-- build.gradle # main build script
โย ย โโโ src
โย ย โโโ androidTest # Android test assets, resources and code
โย ย โโโ test # Unit tests
โย ย โโโ main
โย ย โย ย โโโ assets # main project assets
โย ย โย ย โโโ java # main project java code
โย ย โย ย โโโ res # main project resources
โย ย โโโ debug # debug variant
โย ย โโโ wasabi # wasabi variant specific resources and manifest
Google Configuration
Google Sign-In is only available for WordPress.com accounts through the official app. Contributors can build and run the app without issue, but Google Sign-In will always fail. Google Sign-In requires configuration files which contain client and server information that can't be shared publicly. More documentation and guides can be found on the Google Identity Platform website.
Contributing
Read our [Contributing Guide](CONTRIBUTING.md) to learn about reporting issues, contributing code, and more ways to contribute.
Security
If you happen to find a security vulnerability, we would appreciate you letting us know at https://hackerone.com/automattic and allowing us to respond before disclosing the issue publicly.
Getting in Touch
If you have questions or just want to say hi, join the WordPress Slack and drop a message on the #mobile
channel.
Documentation
- [Coding Style](docs/coding-style.md) - guidelines and validation and auto-formatting tools
- [Pull Request Guidelines](docs/pull-request-guidelines.md) - branch naming and how to write good pull requests
Please read the [docs](docs/) for more.
Resources
License
WordPress for Android is an Open Source project covered by the
[GNU General Public License version 2](LICENSE.md). Note: code
in the libs/
directory comes from external libraries, which might
be covered by a different license compatible with the GPLv2.
*Note that all licence references and agreements mentioned in the WordPress-Android README section above
are relevant to that project's source code only.