mirror of
https://github.com/yggdrasil-network/yggdrasil-android.git
synced 2025-04-29 06:35:08 +03:00
Merge branch 'main' into main
This commit is contained in:
commit
67890d7287
6 changed files with 24 additions and 22 deletions
6
.github/workflows/android.yml
vendored
6
.github/workflows/android.yml
vendored
|
@ -57,11 +57,13 @@ jobs:
|
||||||
|
|
||||||
- name: Gradle build
|
- name: Gradle build
|
||||||
run: |
|
run: |
|
||||||
|
echo "${{ secrets.RELEASE_KEYSTORE }}" > app/gha.keystore.asc
|
||||||
|
gpg -d --passphrase "${{ secrets.RELEASE_KEYSTORE_PASSWORD }}" --batch app/gha.keystore.asc > app/gha.jks
|
||||||
chmod +x gradlew
|
chmod +x gradlew
|
||||||
./gradlew build
|
./gradlew assembleYggdrasil
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: yggdrasil-android
|
name: yggdrasil-android
|
||||||
path: app/release/app-release.apk
|
path: app/build/outputs/apk/yggdrasil/app-yggdrasil.apk
|
||||||
|
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -16,3 +16,5 @@
|
||||||
local.properties
|
local.properties
|
||||||
/app/libs/yggdrasil.aar
|
/app/libs/yggdrasil.aar
|
||||||
/app/libs/yggdrasil-sources.jar
|
/app/libs/yggdrasil-sources.jar
|
||||||
|
/app/release/*
|
||||||
|
/app/release
|
||||||
|
|
|
@ -17,11 +17,27 @@ android {
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
signingConfigs {
|
||||||
|
create("yggdrasil") {
|
||||||
|
// You need to specify either an absolute path or include the
|
||||||
|
// keystore file in the same directory as the build.gradle file.
|
||||||
|
storeFile = file("gha.jks")
|
||||||
|
storePassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
|
||||||
|
keyAlias = "yggdrasil-android"
|
||||||
|
keyPassword = "g1thub4ct10n34yggdr4s1l4ndr01d"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
yggdrasil {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||||
|
signingConfig = signingConfigs.getByName("yggdrasil")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
sourceCompatibility JavaVersion.VERSION_1_8
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||||||
|
@ -42,4 +58,4 @@ dependencies {
|
||||||
testImplementation 'junit:junit:4.+'
|
testImplementation 'junit:junit:4.+'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
||||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
|
@ -1,18 +0,0 @@
|
||||||
{
|
|
||||||
"version": 2,
|
|
||||||
"artifactType": {
|
|
||||||
"type": "APK",
|
|
||||||
"kind": "Directory"
|
|
||||||
},
|
|
||||||
"applicationId": "eu.neilalexander.yggdrasil",
|
|
||||||
"variantName": "release",
|
|
||||||
"elements": [
|
|
||||||
{
|
|
||||||
"type": "SINGLE",
|
|
||||||
"filters": [],
|
|
||||||
"versionCode": 1,
|
|
||||||
"versionName": "1.0",
|
|
||||||
"outputFile": "app-release.apk"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -26,7 +26,7 @@ cp /tmp/yggdrasil-go/yggdrasil.aar /tmp/yggdrasil-android/app/libs/
|
||||||
|
|
||||||
```
|
```
|
||||||
cd /tmp/yggdrasil-android
|
cd /tmp/yggdrasil-android
|
||||||
./gradew assemble
|
./gradew assembleRelease
|
||||||
```
|
```
|
||||||
|
|
||||||
note: you will need to use jdk-11 as jdk-16 `"doesn't work" ™`
|
note: you will need to use jdk-11 as jdk-16 `"doesn't work" ™`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue