Gitignore

This commit is contained in:
Philipp Heckel 2021-11-29 15:28:05 -05:00
parent 4ed73f6f98
commit 45389bf884
4 changed files with 31 additions and 1 deletions

6
.gitignore vendored
View File

@ -31,7 +31,13 @@ gen/
# Ignore gradle files
.gradle/
# Build outputs
build/
app/fdroid/release/
app/fdroid/debug/
app/play/release/
app/play/debug/
# Local configuration file (sdk path, etc)
local.properties

View File

@ -15,7 +15,11 @@ but I haven't had the time yet.
Without Firebase, you may want to still change the default `app_base_url` in [strings.xml](https://github.com/binwiederhier/ntfy-android/blob/main/app/src/main/res/values/strings.xml)
if you're self-hosting the server. Then run:
```
# To build an unsigned .apk (app/build/outputs/apk/fdroid/*.apk)
./gradlew assembleFdroidRelease
# To build a bundle .aab (app/fdroid/release/*.aab)
./gradlew bundleFdroidRelease
```
## Building with Firebase (FCM, Google Play flavor)
@ -25,7 +29,11 @@ To build your own version with Firebase, you must:
* And change `app_base_url` in [strings.xml](https://github.com/binwiederhier/ntfy-android/blob/main/app/src/main/res/values/strings.xml)
* Then run:
```
# To build an unsigned .apk (app/build/outputs/apk/play/*.apk)
./gradlew assemblePlayRelease
# To build a bundle .aab (app/play/release/*.aab)
./gradlew bundlePlayRelease
```
## License

17
TESTING.md Normal file
View File

@ -0,0 +1,17 @@
# Testing
## Manual testing steps
* Upgrade from old version
* Subscribe to topic
* With instant delivery
* With other server
* Main view
* Multi-delete
* Toggle global mute
* Detail view
* Toggle per-topic mute
* Send message while in detail view (should show notification)
* Check if notifications get canceled when sending message
*

1
app/.gitignore vendored
View File

@ -1 +0,0 @@
/build