Compile release APK on CI

*Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
This commit is contained in:
Ishan09811 2024-02-01 18:34:03 +05:30 committed by GitHub
parent 61ba0f2d35
commit e6d012d05d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 55 additions and 19 deletions

View file

@ -6,15 +6,19 @@ on:
- master - master
pull_request: pull_request:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs: jobs:
x64: x64:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
build_type:
- release
steps: steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Fetch submodules - name: Fetch submodules
run: git submodule update --init --recursive run: git submodule update --init --recursive
@ -29,7 +33,7 @@ jobs:
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
distribution: 'zulu' # See 'Supported distributions' for available options distribution: 'zulu'
java-version: '17' java-version: '17'
- name: Configure CMake - name: Configure CMake
@ -37,23 +41,36 @@ jobs:
- name: Build - name: Build
run: | run: |
# Apply patch for GLES compatibility
git apply ./.github/gles.patch git apply ./.github/gles.patch
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} # Build the project with CMake
cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }}
# Move the generated library to the appropriate location
mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/x86_64/ mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/x86_64/
# Build the Android app with Gradle
cd src/pandroid cd src/pandroid
./gradlew assembleDebug ./gradlew assemble${{ env.BUILD_TYPE }}
cd ../.. cd ../..
- name: Upload executable - name: Upload artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: Android APK (x86-64) name: Android APKs (x86-64)
path: './src/pandroid/app/build/outputs/apk/debug/app-debug.apk' path: |
./src/pandroid/app/build/outputs/apk/${{ env.BUILD_TYPE }}/app-${{ env.BUILD_TYPE }}.apk
arm64: arm64:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
build_type:
- release
steps: steps:
- name: Set BUILD_TYPE variable
run: echo "BUILD_TYPE=${{ matrix.build_type }}" >> $GITHUB_ENV
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Fetch submodules - name: Fetch submodules
run: git submodule update --init --recursive run: git submodule update --init --recursive
@ -68,7 +85,7 @@ jobs:
- name: Setup Java - name: Setup Java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
distribution: 'zulu' # See 'Supported distributions' for available options distribution: 'zulu'
java-version: '17' java-version: '17'
- name: Configure CMake - name: Configure CMake
@ -76,16 +93,21 @@ jobs:
- name: Build - name: Build
run: | run: |
# Apply patch for GLES compatibility
git apply ./.github/gles.patch git apply ./.github/gles.patch
cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} # Build the project with CMake
cmake --build ${{github.workspace}}/build --config ${{ env.BUILD_TYPE }}
# Move the generated library to the appropriate location
mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/arm64-v8a/ mv ./build/libAlber.so ./src/pandroid/app/src/main/jniLibs/arm64-v8a/
# Build the Android app with Gradle
cd src/pandroid cd src/pandroid
./gradlew assembleDebug ./gradlew assemble${{ env.BUILD_TYPE }}
ls -R app/build/outputs
cd ../.. cd ../..
- name: Upload executable - name: Upload artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: Android APK (arm64) name: Android APKs (arm64)
path: './src/pandroid/app/build/outputs/apk/debug/app-debug.apk' path: |
./src/pandroid/app/build/outputs/apk/${{ env.BUILD_TYPE }}/app-${{ env.BUILD_TYPE }}.apk

View file

@ -21,8 +21,20 @@ android {
} }
buildTypes { buildTypes {
release { getByName("release") {
isMinifyEnabled = false isMinifyEnabled = false
isShrinkResources = false
isDebuggable = false
signingConfig = signingConfigs.getByName("debug")
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
getByName("debug") {
isMinifyEnabled = false
isShrinkResources = false
isDebuggable = true
proguardFiles( proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro" "proguard-rules.pro"
@ -41,4 +53,4 @@ dependencies {
implementation("androidx.preference:preference:1.2.1") implementation("androidx.preference:preference:1.2.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("com.google.code.gson:gson:2.10.1") implementation("com.google.code.gson:gson:2.10.1")
} }

View file

@ -20,6 +20,8 @@
android:label="@string/app_name" android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round" android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true" android:supportsRtl="true"
android:isGame="true"
android:hardwareAccelerated="true"
android:theme="@style/Theme.Pandroid" android:theme="@style/Theme.Pandroid"
tools:targetApi="31"> tools:targetApi="31">
<activity <activity