Skip to content

Commit 23a78a8

Browse files
committed
first commit
0 parents  commit 23a78a8

54 files changed

Lines changed: 1459 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: CI
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Setup JDK 21
16+
uses: actions/setup-java@v3
17+
with:
18+
distribution: zulu
19+
java-version: "21"
20+
- name: Setup Android SDK
21+
uses: android-actions/setup-android@v2
22+
- name: Install requires platform
23+
run: sdkmanager "platforms;android-33" "build-tools;33.0.2"
24+
- name: Build with Gradle
25+
run: ./gradlew assembleRelease
26+
- uses: ilharp/sign-android-release@nightly
27+
name: Sign app APK
28+
id: sign_app
29+
with:
30+
releaseDir: app/build/outputs/apk/release
31+
signingKey: ${{ secrets.KEYSTORE }}
32+
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
33+
keyAlias: ${{ secrets.KEYSTORE_ALIAS }}
34+
- name: Upload Packages
35+
uses: actions/upload-artifact@v3
36+
if: success()
37+
with:
38+
name: eUICC Probe
39+
path: ${{ steps.sign_app.outputs.signedFile }}

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties
16+
17+
/app/debug/*.aab
18+
/app/release/*.aab

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/appInsightsSettings.xml

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)