* refactor: organization (1/?)
open for ideas and suggestions
TODO:
• Merge UI Hide Elements
• Remove Longitude and Latitude from the menu and integrate into the MapActivity
• Move New Map UI to Experimental
• Shorten „Show Message Content in Notification“
And possibly even more
* Merge hide UI Elements
bugfix(?): merge overlay
* add: download options
* add: config listeners
* fix(ci): debug
remove prod as it's not getting built anymore
* fix(messagelogger): clear database bug
* update locale, reorganize config
* add: set precise location dialog
* config: better notifications
---------
Co-authored-by: rhunk <101876869+rhunk@users.noreply.github.com>
37 lines
927 B
YAML
37 lines
927 B
YAML
name: Android CI
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths-ignore:
|
|
- '**/README.md'
|
|
- '.github/**'
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
cache: gradle
|
|
- name: Grant execute permission for gradlew
|
|
run: chmod +x gradlew
|
|
- name: Clean Gradle Cache
|
|
run: ./gradlew clean
|
|
- name: Build with Gradle
|
|
run: ./gradlew assembleDebug
|
|
- name: Upload armv8
|
|
uses: actions/upload-artifact@v3.1.2
|
|
with:
|
|
name: app-armv8-release
|
|
path: app/build/outputs/apk/armv8/debug/*.apk
|
|
- name: Upload armv7
|
|
uses: actions/upload-artifact@v3.1.2
|
|
with:
|
|
name: app-armv7-release
|
|
path: app/build/outputs/apk/armv7/debug/*.apk
|