Gitignore
This commit is contained in:
parent
4ed73f6f98
commit
45389bf884
4 changed files with 31 additions and 1 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -31,7 +31,13 @@ gen/
|
||||||
|
|
||||||
# Ignore gradle files
|
# Ignore gradle files
|
||||||
.gradle/
|
.gradle/
|
||||||
|
|
||||||
|
# Build outputs
|
||||||
build/
|
build/
|
||||||
|
app/fdroid/release/
|
||||||
|
app/fdroid/debug/
|
||||||
|
app/play/release/
|
||||||
|
app/play/debug/
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
|
|
|
@ -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)
|
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:
|
if you're self-hosting the server. Then run:
|
||||||
```
|
```
|
||||||
|
# To build an unsigned .apk (app/build/outputs/apk/fdroid/*.apk)
|
||||||
./gradlew assembleFdroidRelease
|
./gradlew assembleFdroidRelease
|
||||||
|
|
||||||
|
# To build a bundle .aab (app/fdroid/release/*.aab)
|
||||||
|
./gradlew bundleFdroidRelease
|
||||||
```
|
```
|
||||||
|
|
||||||
## Building with Firebase (FCM, Google Play flavor)
|
## 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)
|
* 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:
|
* Then run:
|
||||||
```
|
```
|
||||||
|
# To build an unsigned .apk (app/build/outputs/apk/play/*.apk)
|
||||||
./gradlew assemblePlayRelease
|
./gradlew assemblePlayRelease
|
||||||
|
|
||||||
|
# To build a bundle .aab (app/play/release/*.aab)
|
||||||
|
./gradlew bundlePlayRelease
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
17
TESTING.md
Normal file
17
TESTING.md
Normal 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
1
app/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/build
|
|
Loading…
Reference in a new issue