mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
Compare commits
14 Commits
306116dbde
...
ca0089e486
Author | SHA1 | Date | |
---|---|---|---|
ca0089e486 | |||
c9930a7aa3 | |||
c9b06ba3cf | |||
a168d28d81 | |||
8f05346ced | |||
8e62bd83d6 | |||
471ea7a6ee | |||
353a606864 | |||
3dc998a5c0 | |||
22e25671ce | |||
6d07af868e | |||
d9f57eddf2 | |||
ad664d5299 | |||
13dc02d144 |
41
.github/workflows/android.yml
vendored
Normal file
41
.github/workflows/android.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
name: Android
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: GPXSee
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: set up JDK 1.8
|
||||||
|
uses: actions/setup-java@v1
|
||||||
|
with:
|
||||||
|
java-version: 1.8
|
||||||
|
- name: Setup Android SDK
|
||||||
|
uses: android-actions/setup-android@v2
|
||||||
|
- name: Run sdkmanager update
|
||||||
|
run: ${ANDROID_HOME}/tools/bin/sdkmanager --update
|
||||||
|
- name: Install android platform, platform-tools, build-tools and ndk
|
||||||
|
run: ${ANDROID_HOME}/tools/bin/sdkmanager --install "cmdline-tools;latest" "platform-tools" "platforms;android-31" "build-tools;31.0.0" "ndk;22.1.7171670"
|
||||||
|
- name: Install Qt (Desktop)
|
||||||
|
uses: jurplel/install-qt-action@v2
|
||||||
|
with:
|
||||||
|
aqtversion: '==2.1.0'
|
||||||
|
version: '6.3.0'
|
||||||
|
- name: Install Qt (Android)
|
||||||
|
uses: jurplel/install-qt-action@v2
|
||||||
|
with:
|
||||||
|
aqtversion: '==2.1.0'
|
||||||
|
version: '6.3.0'
|
||||||
|
target: 'android'
|
||||||
|
arch: 'android_armv7'
|
||||||
|
modules: qtpositioning qt5compat
|
||||||
|
- name: Configure build
|
||||||
|
run: qmake gpxsee.pro
|
||||||
|
- name: Build project
|
||||||
|
run: make -j2
|
@ -545,7 +545,9 @@ android {
|
|||||||
return($$first(vCode)$$first(suffix))
|
return($$first(vCode)$$first(suffix))
|
||||||
}
|
}
|
||||||
|
|
||||||
include($$OPENSSL_PATH/openssl.pri)
|
!include($$OPENSSL_PATH/openssl.pri) {
|
||||||
|
message("OpenSSL not found, building without HTTPS support!")
|
||||||
|
}
|
||||||
|
|
||||||
ANDROID_VERSION_NAME = $$VERSION
|
ANDROID_VERSION_NAME = $$VERSION
|
||||||
ANDROID_VERSION_CODE = $$versionCode($$ANDROID_VERSION_NAME)
|
ANDROID_VERSION_CODE = $$versionCode($$ANDROID_VERSION_NAME)
|
||||||
|
Loading…
Reference in New Issue
Block a user