Compare commits

...

2 Commits

Author SHA1 Message Date
2135e36c9f ????
Some checks failed
Build Android / Build APK (push) Has been cancelled
2024-07-12 00:37:03 +03:00
13eeac7eec ???? 2024-07-12 00:36:59 +03:00
3 changed files with 50 additions and 0 deletions

View File

@ -8,6 +8,16 @@ jobs:
name: Build APK name: Build APK
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 20.x
- name: Install npm packages
run: npm install i
- name: Install app dependencies
run: npm install
- name: Build apk file - name: Build apk file
uses: sparkfabrik/android-build-action@v1.5.0 uses: sparkfabrik/android-build-action@v1.5.0
with: with:

View File

@ -0,0 +1,20 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "ru.ihackfx.bibliotec",
"variantName": "debug",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"outputFile": "app-debug.apk"
}
],
"elementType": "File"
}

View File

@ -0,0 +1,20 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "ru.ihackfx.bibliotec",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"outputFile": "app-release.apk"
}
],
"elementType": "File"
}