https://github.com/cssnr/tibs3dprints-android
Tibs3DPrints Android Application
https://github.com/cssnr/tibs3dprints-android
android
Last synced: 29 days ago
JSON representation
Tibs3DPrints Android Application
- Host: GitHub
- URL: https://github.com/cssnr/tibs3dprints-android
- Owner: cssnr
- Created: 2025-05-15T07:37:29.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-07-19T04:43:40.000Z (11 months ago)
- Last Synced: 2025-07-19T04:57:44.546Z (11 months ago)
- Topics: android
- Language: Kotlin
- Homepage: https://cssnr.github.io
- Size: 301 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
[](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk)
[](https://github.com/cssnr/tibs3dprints-android/releases/latest)
[](https://github.com/cssnr/tibs3dprints-android/actions/workflows/lint.yaml)
[](https://github.com/cssnr/tibs3dprints-android/actions/workflows/release.yaml)
[](https://github.com/cssnr/tibs3dprints-android)
[](https://github.com/cssnr/tibs3dprints-android/graphs/commit-activity)
[](https://github.com/cssnr/tibs3dprints-android)
[](https://github.com/cssnr/tibs3dprints-android/discussions)
[](https://github.com/cssnr/tibs3dprints-android/forks)
[](https://github.com/cssnr/tibs3dprints-android/stargazers)
[](https://cssnr.github.io/)
[](https://discord.gg/wXy6m2X8wY)
[](https://ko-fi.com/cssnr)
# Tibs3DPrints Android
[](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk)
- [Install](#Install)
- [Development](#Development)
- [Android Studio](#Android-Studio)
- [Command Line](#Command-Line)
- [Support](#Support)
- [Contributing](#Contributing)
Android Application for Tibs3DPrints: https://tibs3dprints.com/
## Install
> [!TIP]
> Google Play is currently in Closed Testing. To be included contact us on [Discord](https://discord.gg/wXy6m2X8wY).
[](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk)
[](https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://github.com/cssnr/tibs3dprints-android)
[](https://play.google.com/store/apps/details?id=org.cssnr.tibs3dprints)
📲 Click to View QR Codes 📸
[](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk)
[](https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://github.com/cssnr/tibs3dprints-android)
[](https://play.google.com/store/apps/details?id=org.cssnr.tibs3dprints)
_Note: Until published on the play store, you may need to allow installation of apps from unknown sources._
- Supports Android 8 (API 26) 2017 or Newer.
Downloading and Installing the [apk](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk)
should take you to the settings area to allow installation if not already enabled.
For more information, see [Release through a website](https://developer.android.com/studio/publish#publishing-website).
View Manual Steps to Install from Unknown Sources
1. Go to your device settings.
2. Search for "Install unknown apps" or similar.
3. Choose the app you will install the apk file from.
- Select your web browser to install directly from it.
- Select your file manager to open it, locate the apk and install from there.
4. Download the [Latest Release](https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk).
5. Open the download apk in the app you selected in step #3.
6. Choose Install and Accept any Play Protect notifications.
7. The app is now installed.
## Support
For general help or to request a feature, see:
- Q&A Discussion: https://github.com/cssnr/tibs3dprints-android/discussions/categories/q-a
- Request a Feature: https://github.com/cssnr/tibs3dprints-android/discussions/categories/feature-requests
If you are experiencing an issue/bug or getting unexpected results, you can:
- Report an Issue: https://github.com/cssnr/tibs3dprints-android/issues
- Chat with us on Discord: https://discord.gg/wXy6m2X8wY
- Provide General Feedback: [https://cssnr.github.io/feedback/](https://cssnr.github.io/feedback/?app=Tibs3DPrints%20Android%20App)
# Development
This section briefly covers running and building in [Android Studio](#Android-Studio) and the [Command Line](#Command-Line).
## Android Studio
1. Download and Install Android Studio.
https://developer.android.com/studio
2. Ensure that usb or wifi debugging is enabled in the Android developer settings and verify.
3. Then build or run the app on your device.
- Import the Project
- Run Gradle Sync
To Run: Select device and press Play ▶️
To Build:
- Select the Build Variant (debug or release)
- Build > Generate App Bundles or APK > Generate APKs
## Command Line
_Note: This section is a WIP! For more details see the [release.yaml](.github/workflows/release.yaml)._
You will need to have [ADB](https://developer.android.com/tools/adb) installed.
Click Here to Download and Install a Release
```shell
$ wget https://github.com/cssnr/tibs3dprints-android/releases/latest/download/app-release.apk
$ ls
app-release.apk
$ which adb
C:\Users\Shane\Android\sdk\platform-tools\adb.EXE
$ adb devices
List of devices attached
RF9M33Z1Q0M device
$ adb -s RF9M33Z1Q0M install app-release.apk
Performing Incremental Install
Serving...
All files should be loaded. Notifying the device.
Success
Install command complete in 917 ms
```
See below for more details...
1. Download and Install the Android SDK Platform Tools.
https://developer.android.com/tools/releases/platform-tools#downloads
Ensure that `adb` is in your PATH.
2. List and verify the device is connected with:
```shell
$ adb devices
List of devices attached
RF9M33Z1Q0M device
```
3. Build a debug or release apk.
```shell
./gradlew assemble
./gradlew assembleRelease
```
_Note: Use `gradlew.bat` for Windows._
4. Then install the apk to your device with adb.
```shell
$ cd app/build/outputs/apk/debug
$ adb -s RF9M33Z1Q0M install app-debug.apk
```
```shell
$ cd app/build/outputs/apk/release
$ adb -s RF9M33Z1Q0M install app-release-unsigned.apk
```
_Note: you may have to uninstall before installing due to different certificate signatures._
For more details, see the [ADB Documentation](https://developer.android.com/tools/adb#move).
# Contributing
Please consider making a donation to support the development of this project
and [additional](https://cssnr.com/) open source projects.
[](https://ko-fi.com/cssnr)
You can also star this project on GitHub and support other related projects:
- [Django Files Android](https://github.com/django-files/android-client?tab=readme-ov-file#readme)
- [Zipline Android](https://github.com/cssnr/zipline-android?tab=readme-ov-file#readme)
- [NOAA Weather Android](https://github.com/cssnr/noaa-weather-android?tab=readme-ov-file#readme)
- [Remote Wallpaper Android](https://github.com/cssnr/remote-wallpaper-android?tab=readme-ov-file#readme)
- [Tibs3DPrints Android](https://github.com/cssnr/tibs3dprints-android?tab=readme-ov-file#readme)
For a full list of current projects visit: [https://cssnr.github.io/](https://cssnr.github.io/)