sgtpuzzles alternatives and similar packages
Based on the "App" category.
Alternatively, view sgtpuzzles alternatives based on common mentions on social networks and blogs.
-
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 -
#<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 -
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. -
jianshi
A Full-Stack mobile app, including Android & Server, Simple-Poem 简诗. You can write poem in graceful & traditional Chinese style. -
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). -
Bandhook-Kotlin
A showcase music app for Android entirely written using Kotlin language -
2048-android
The android port of the 2048 game (for offline playing) -
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 -
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 -
GradientDrawableTuner
🕹️ See how the properties of Android's "shape" affect the Drawable's appearance, intuitively. -
MaterialDesignColorPalette
This is a dev tool to visualize the colours of Material design defined on -
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. -
Android-Jigsaw-Puzzle
Android app that allows you to draw anything and turn it into a jigsaw puzzle.
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 sgtpuzzles or a related project?
README
Android port of Simon Tatham's Puzzles
This is Simon Tatham's Portable Puzzle Collection, ported to Android.
The easiest way to install it is from Google Play.
If you'd like to get involved, read on:
How to help without writing any code
Good bug reports and well-thought-out feature suggestions are always helpful, here's the issue tracker. It's always worth a quick search to see if your bug/idea has already been reported.
Simon has an excellent page on how to write a good bug report.
Need to add/change some graphics? The sources live in
app/src/main/graphics-sources
and were converted to icons with
Android Asset Studio
Coders should read on...
Prerequisites
Some knowledge of Android Development and/or C, and ideally JNI, depending on what you want to work on: the puzzles themselves are in C, most Android-specific code is in Java, and JNI (Java Native Interface) is the API bridge between the two.
If you have the option, a Linux-based development machine, as I haven't tried to build on Windows or OSX, and it will need some tweaks.
Android NDK (Native Development Kit)
If using gradle directly, create local.properties
with sdk.dir=/your_path_here
(I think Android Studio writes this automatically)
I probably missed a few things here. File a bug when you find them. :-)
Getting/configuring the source
The source lives at https://github.com/chrisboyle/sgtpuzzles - you can either clone/download it from there, or make your own fork on github (the Fork button near the top right). A fork means you can easily send me a "pull request" of your change, and I can review and integrate it, all within github.
You'll also find a branch called "upstream", which is Simon's code whenever I last synced. Handy for diffs, to see what I broke on Android. :-)
This repository includes old git-svn
commits that predate upstream's move
to git. History will look slightly nicer if, after cloning, you do:
git fetch origin 'refs/replace/*:refs/replace/*'
Sadly github itself does not appear to support replacement so you will still see duplicates there.
You should now be able to edit, build and launch the app like any other Android project (except a lot of it is in C). Don't forget that you'll be signing with a dev key, so to test on a device that already has the Google Play version, uninstall that first.
Architecture / where to find stuff
Simon has some excellent developer documentation which is definitely worth reading first, at least the Introduction.
The Android front-end (android.c
) is basically just glue, passing everything to
Java. The Java classes providing the UI layer, game chooser, etc. are in
app/src/main/java
. The main class GamePlay
has the native methods that
android.c
implements. The game area on screen is a GameView
, which basically
just has a bitmap for the puzzle to draw on. Note that almost no native code is
run until the user has chosen a game (unless there's a previous game to resume).
Files for other platforms etc. that are not currently usable in this fork are in the not-in-use directory.
If your change is relevant to other platforms, you should definitely ping Simon about it as well as me, but test on at least one other platform first in a separate checkout (see above).
Major changes e.g. adding a game
At this level you especially need to think carefully about other platforms. One of the best features of this collection is its relative consistency across different environments, and the Android port should continue that.
If adding a game, definitely read the relevant chapter (6) of Simon's development docs, and add the new game to the places I've gone and duplicated the list just for Android...
app/src/main/res/values/strings.xml
app/src/main/res/values/game_props.xml
- ...and possibly others.
Happy hacking! :-)
Chris Boyle